mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-15 01:27:36 +01:00
13 lines
207 B
C
13 lines
207 B
C
|
#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);
|