1
0
mirror of synced 2024-11-15 02:07:36 +01:00
bananatools/platform/vfs.h

20 lines
353 B
C
Raw Normal View History

2023-01-03 05:35:53 +01:00
#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stddef.h>
struct vfs_config {
bool enable;
wchar_t path[MAX_PATH];
wchar_t d[MAX_PATH];
wchar_t e[MAX_PATH];
wchar_t f[MAX_PATH];
wchar_t g[MAX_PATH];
wchar_t h[MAX_PATH];
wchar_t j[MAX_PATH];
};
HRESULT vfs_hook_init(const struct vfs_config *config);