mirror of
https://gitea.tendokyu.moe/TeamTofuShop/capnhook.git
synced 2026-09-22 22:38:12 +03:00
10 lines
191 B
C
10 lines
191 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
typedef DWORD (CALLBACK *process_entry_t)(void);
|
|
|
|
HRESULT process_hijack_startup(
|
|
process_entry_t new_entry,
|
|
process_entry_t *orig_entry);
|