taitools/platform/vfs.h

14 lines
206 B
C
Raw Permalink Normal View History

2024-02-06 08:24:58 +00:00
#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stddef.h>
struct vfs_config {
bool enable;
wchar_t d_drive[MAX_PATH];
};
HRESULT vfs_hook_init(const struct vfs_config *config);