1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2024-11-28 02:50:48 +01:00
segatools-hay1tsme/platform/vfs.h

15 lines
234 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stddef.h>
struct vfs_config {
bool enable;
wchar_t amfs[MAX_PATH];
wchar_t appdata[MAX_PATH];
};
HRESULT vfs_hook_init(const struct vfs_config *config);