2023-09-14 00:23:40 +00:00
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
HRESULT createprocess_push_hook_w(const wchar_t *name, const wchar_t *head, const wchar_t *tail);
|
|
|
|
HRESULT createprocess_push_hook_a(const char *name, const char *head, const char *tail);
|
2023-09-13 21:54:40 +00:00
|
|
|
|
|
|
|
struct process_hook_sym_w {
|
|
|
|
const wchar_t *name;
|
2023-09-14 00:23:40 +00:00
|
|
|
size_t name_size;
|
|
|
|
const wchar_t *head;
|
|
|
|
size_t head_size;
|
2023-09-13 21:54:40 +00:00
|
|
|
const wchar_t *tail;
|
2023-09-14 00:23:40 +00:00
|
|
|
size_t tail_size;
|
2023-09-13 21:54:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct process_hook_sym_a {
|
|
|
|
const char *name;
|
2023-09-14 00:23:40 +00:00
|
|
|
size_t name_size;
|
|
|
|
const char *head;
|
|
|
|
size_t head_size;
|
2023-09-13 21:54:40 +00:00
|
|
|
const char *tail;
|
2023-09-14 00:23:40 +00:00
|
|
|
size_t tail_size;
|
2023-09-13 21:54:40 +00:00
|
|
|
};
|