hooklib/path.c: add function to hook apply path hooks to another module

This commit is contained in:
2020-02-14 07:25:46 +00:00
parent 00819a2721
commit 533683e595
2 changed files with 8 additions and 1 deletions

View File

@ -11,6 +11,7 @@ typedef HRESULT (*path_hook_t)(
size_t *count);
HRESULT path_hook_push(path_hook_t hook);
void path_hook_insert_hooks(HMODULE target);
int path_compare_w(const wchar_t *string1, const wchar_t *string2, size_t count);
static inline bool path_is_separator_w(wchar_t c)