This commit is contained in:
twinaphex 2020-08-02 10:28:23 +02:00
parent e298ceb6bf
commit f35010e1ae
2 changed files with 16 additions and 4 deletions

View File

@ -30,13 +30,17 @@
#include <boolean.h>
#include <retro_inline.h>
#if defined(_WIN32) && !defined(_XBOX)
#if defined(_WIN32)
#if defined(_XBOX)
#include <Xtl.h>
#else
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#elif defined(_WIN32) && defined(_XBOX)
#include <Xtl.h>
#endif
#endif
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)

View File

@ -39,11 +39,19 @@
#include <android/log.h>
#endif
#if defined(_WIN32) && !defined(_XBOX)
#if defined(_WIN32)
#if defined(_XBOX)
#include <Xtl.h>
#else
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#endif
#endif
#include <file/file_path.h>
#include <string/stdstring.h>
#include <streams/file_stream.h>