bananatools/platform/vfs.h

20 lines
353 B
C

#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);