We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 121df30 commit 45d65f6Copy full SHA for 45d65f6
include/SDL3/SDL_stdinc.h
@@ -62,6 +62,13 @@ typedef signed __int32 int32_t;
62
typedef unsigned __int32 uint32_t;
63
typedef signed __int64 int64_t;
64
typedef unsigned __int64 uint64_t;
65
+#ifndef _INTPTR_T_DEFINED
66
+#ifdef _WIN64
67
+typedef __int64 intptr_t;
68
+#else
69
+typedef int intptr_t;
70
+#endif
71
72
#ifndef _UINTPTR_T_DEFINED
73
#ifdef _WIN64
74
typedef unsigned __int64 uintptr_t;
0 commit comments