Explorar o código

Fixed build with MinGW-64 windows.devices.power.h

The MinGW-64 header defines the parameters as ABI::Windows::Foundation::IReference<INT32 > **, but the Windows header defines the parameters as __FIReference_1_int**
Sam Lantinga %!s(int64=3) %!d(string=hai) anos
pai
achega
d2c4d74dd0
Modificáronse 1 ficheiros con 7 adicións e 0 borrados
  1. 7 0
      src/joystick/windows/SDL_windows_gaming_input.c

+ 7 - 0
src/joystick/windows/SDL_windows_gaming_input.c

@@ -35,6 +35,13 @@
 #include <roapi.h>
 
 
+#ifdef ____FIReference_1_INT32_INTERFACE_DEFINED__
+/* MinGW-64 uses __FIReference_1_INT32 instead of Microsoft's __FIReference_1_int */
+#define __FIReference_1_int __FIReference_1_INT32
+#define __FIReference_1_int_get_Value __FIReference_1_INT32_get_Value
+#define __FIReference_1_int_Release __FIReference_1_INT32_Release
+#endif
+
 struct joystick_hwdata
 {
     __x_ABI_CWindows_CGaming_CInput_CIRawGameController *controller;