2019-05-18 03:11:51 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
2019-11-06 00:31:11 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
struct vfs_config {
|
|
|
|
bool enable;
|
|
|
|
wchar_t amfs[MAX_PATH];
|
|
|
|
wchar_t appdata[MAX_PATH];
|
2019-12-18 19:51:09 +00:00
|
|
|
wchar_t option[MAX_PATH];
|
2019-11-06 00:31:11 +00:00
|
|
|
};
|
2019-05-18 03:11:51 +00:00
|
|
|
|
|
|
|
HRESULT vfs_hook_init(const struct vfs_config *config);
|