A few more WinDef types in windows_base.h

These specific ones are used in MS's d3dx12 headers
This commit is contained in:
Ellie Hermaszewska 2023-09-07 18:41:31 +08:00 committed by Philip Rebohle
parent 5828f0e2b9
commit 41191af3b1
1 changed files with 4 additions and 1 deletions

View File

@ -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;