From 37116493d3374e821aeffb94f5c3bc1b073a15a5 Mon Sep 17 00:00:00 2001 From: crueter Date: Tue, 19 May 2026 21:23:57 -0400 Subject: [PATCH] fix windows build err Signed-off-by: crueter --- src/core/file_sys/vfs/vfs.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/core/file_sys/vfs/vfs.h b/src/core/file_sys/vfs/vfs.h index f846a9669c..42b90d6c54 100644 --- a/src/core/file_sys/vfs/vfs.h +++ b/src/core/file_sys/vfs/vfs.h @@ -16,6 +16,12 @@ #include "core/file_sys/fs_filesystem.h" #include "core/file_sys/vfs/vfs_types.h" +#undef CreateFile +#undef CopyFile +#undef MoveFile +#undef DeleteFile +#undef CreateDirectory + namespace FileSys { // An enumeration representing what can be at the end of a path in a VfsFilesystem