forked from Hay1tsme/segatools
e97f6b5d8d
Optional for now, since not all games or configurations may need it. It may be better eventually to refactor hooklib/path.c to allow for static path remapping, to minimize boilerplate code around the functions.
16 lines
264 B
C
16 lines
264 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];
|
|
wchar_t option[MAX_PATH];
|
|
};
|
|
|
|
HRESULT vfs_hook_init(const struct vfs_config *config);
|