taitools/platform/vfs.h
2024-02-06 03:24:58 -05:00

14 lines
206 B
C

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