winrt: use windowsio in non-libc mode
CMake's SDL_build_config.h force disables HAVE_STDIO_H when buiding winrt in non-libc mode. Becase CreateFileEx is not available in UWP mode, use CreateFile2 instead.
This commit is contained in:
committed by
Anonymous Maarten
parent
ea8757a748
commit
b7889a7389
@@ -107,7 +107,7 @@ typedef struct SDL_RWops
|
||||
void *asset;
|
||||
} androidio;
|
||||
|
||||
#elif defined(__WIN32__) || defined(__GDK__)
|
||||
#elif defined(__WIN32__) || defined(__GDK__) || defined(__WINRT__)
|
||||
struct
|
||||
{
|
||||
SDL_bool append;
|
||||
|
||||
Reference in New Issue
Block a user