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.
_WIN64
ULONG_PTR
1 parent bb8317a commit 90946f0Copy full SHA for 90946f0
include/swift/Threading/Impl/Win32/Win32Defs.h
@@ -38,7 +38,11 @@ typedef int BOOL;
38
typedef unsigned long DWORD;
39
typedef long LONG;
40
typedef unsigned long ULONG;
41
+#if defined(_WIN64)
42
+typedef unsigned __int64 ULONG_PTR;
43
+#else
44
typedef unsigned long ULONG_PTR;
45
+#endif
46
typedef PVOID HANDLE;
47
48
typedef VOID(NTAPI *PFLS_CALLBACK_FUNCTION)(PVOID lpFlsData);
0 commit comments