mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2025-01-10 07:41:46 +01:00
14 lines
280 B
C
14 lines
280 B
C
|
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;
|
||
|
};
|