forked from TeamTofuShop/segatools
hooklib/path.c: Add initial path rewriting hooks
This commit is contained in:
12
hooklib/path.h
Normal file
12
hooklib/path.h
Normal file
@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
typedef HRESULT (*path_hook_t)(
|
||||
const wchar_t *src,
|
||||
wchar_t *dest,
|
||||
size_t *count);
|
||||
|
||||
HRESULT path_hook_push(path_hook_t hook);
|
Reference in New Issue
Block a user