Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/doitsujin/dxvk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/native/windows/windows_base.h')
-rw-r--r--include/native/windows/windows_base.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/native/windows/windows_base.h b/include/native/windows/windows_base.h
index 0f6e0c39..fe1a2a0e 100644
--- a/include/native/windows/windows_base.h
+++ b/include/native/windows/windows_base.h
@@ -48,7 +48,6 @@ typedef const void* LPCVOID;
typedef size_t SIZE_T;
typedef int8_t INT8;
-
typedef uint8_t UINT8;
typedef uint8_t BYTE;
@@ -56,9 +55,13 @@ typedef int16_t SHORT;
typedef uint16_t USHORT;
typedef int64_t LONGLONG;
+typedef int64_t INT64;
+
typedef uint64_t ULONGLONG;
+typedef uint64_t UINT64;
typedef intptr_t LONG_PTR;
+typedef uintptr_t ULONG_PTR;
typedef float FLOAT;