hooklib: add createprocess hook skeleton

This commit is contained in:
2023-09-13 17:54:40 -04:00
parent 98d2ea1390
commit 3d7d9fcaa5
2 changed files with 190 additions and 0 deletions

14
hooklib/createprocess.h Normal file
View File

@ -0,0 +1,14 @@
void createprocess_push_hook_w();
void createprocess_push_hook_a();
struct process_hook_sym_w {
const wchar_t *name;
const wchar_t *dll_name;
const wchar_t *tail;
};
struct process_hook_sym_a {
const char *name;
const char *dll_name;
const char *tail;
};