mirror of https://github.com/encounter/SDL.git
fix build against older SDKs after commit 8ebef12
.
This commit is contained in:
parent
8ebef12d31
commit
575dadb11d
|
@ -26,7 +26,14 @@
|
||||||
#include "SDL_error.h"
|
#include "SDL_error.h"
|
||||||
|
|
||||||
#include <objbase.h> /* for CoInitialize/CoUninitialize (Win32 only) */
|
#include <objbase.h> /* for CoInitialize/CoUninitialize (Win32 only) */
|
||||||
|
#if defined(HAVE_ROAPI_H)
|
||||||
#include <roapi.h> /* For RoInitialize/RoUninitialize (Win32 only) */
|
#include <roapi.h> /* For RoInitialize/RoUninitialize (Win32 only) */
|
||||||
|
#else
|
||||||
|
typedef enum RO_INIT_TYPE {
|
||||||
|
RO_INIT_SINGLETHREADED = 0,
|
||||||
|
RO_INIT_MULTITHREADED = 1
|
||||||
|
} RO_INIT_TYPE;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef _WIN32_WINNT_VISTA
|
#ifndef _WIN32_WINNT_VISTA
|
||||||
#define _WIN32_WINNT_VISTA 0x0600
|
#define _WIN32_WINNT_VISTA 0x0600
|
||||||
|
@ -38,6 +45,10 @@
|
||||||
#define _WIN32_WINNT_WIN8 0x0602
|
#define _WIN32_WINNT_WIN8 0x0602
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef LOAD_LIBRARY_SEARCH_SYSTEM32
|
||||||
|
#define LOAD_LIBRARY_SEARCH_SYSTEM32 0x00000800
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* Sets an error message based on an HRESULT */
|
/* Sets an error message based on an HRESULT */
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in New Issue