1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-09-24 11:18:20 +02:00
segatools-dniel97/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);