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:
authorPhilip Rebohle <philip.rebohle@tu-dortmund.de>2023-03-16 22:59:27 +0300
committerPhilip Rebohle <philip.rebohle@tu-dortmund.de>2023-03-16 22:59:43 +0300
commitb06e82591e077f35c6a1a18c424810c776dcff90 (patch)
tree06975e5dfb37da4a54e3f2e66f1ebbc7dccff9bf /include
parent687d32cac53b0d41b52df4956c1767268674dd49 (diff)
[include] Add definitions for D3D12 header
Diffstat (limited to 'include')
-rw-r--r--include/native/windows/windows_base.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/native/windows/windows_base.h b/include/native/windows/windows_base.h
index 5cdcb9ab..7ec0353c 100644
--- a/include/native/windows/windows_base.h
+++ b/include/native/windows/windows_base.h
@@ -40,6 +40,8 @@ typedef const void* LPCVOID;
typedef size_t SIZE_T;
+typedef int8_t INT8;
+
typedef uint8_t UINT8;
typedef uint8_t BYTE;
@@ -49,6 +51,8 @@ typedef uint16_t USHORT;
typedef int64_t LONGLONG;
typedef uint64_t ULONGLONG;
+typedef intptr_t LONG_PTR;
+
typedef float FLOAT;
#ifndef GUID_DEFINED
@@ -327,3 +331,5 @@ typedef struct RGNDATA {
#define FAILED(hr) ((HRESULT)(hr) < 0)
#define SUCCEEDED(hr) ((HRESULT)(hr) >= 0)
+
+#define DEFINE_ENUM_FLAG_OPERATORS(T)