From 44eee1cf42f6f3652dab778f2f9cae37e5bba11a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 4 Jul 2019 04:43:34 +0200 Subject: [PATCH] (VFS UWP) Real fix --- libretro-common/include/vfs/vfs_implementation.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libretro-common/include/vfs/vfs_implementation.h b/libretro-common/include/vfs/vfs_implementation.h index 9b69b7eb81..6ba84e3c0c 100644 --- a/libretro-common/include/vfs/vfs_implementation.h +++ b/libretro-common/include/vfs/vfs_implementation.h @@ -26,6 +26,7 @@ #include #include #include +#include #ifdef HAVE_CDROM #include @@ -41,6 +42,7 @@ enum vfs_scheme VFS_SCHEME_CDROM }; +#ifndef __WINRT__ #ifdef VFS_FRONTEND struct retro_vfs_file_handle #else @@ -64,6 +66,7 @@ struct libretro_vfs_implementation_file vfs_cdrom_t cdrom; #endif }; +#endif /* Replace the following symbol with something appropriate * to signify the file is being compiled for a front end instead of a core.