aboutsummaryrefslogtreecommitdiff
path: root/src/system_headers.h
diff options
context:
space:
mode:
authorYuqian Yang <crupest@outlook.com>2018-09-25 05:30:01 +0000
committerYuqian Yang <crupest@outlook.com>2018-09-25 05:30:01 +0000
commitea4b0966d8eb5a8e76dfbe4d833a07a4797a3284 (patch)
treee5918c686f27363bfacf7d47e4b93617872b908d /src/system_headers.h
parent001e1d955132a02a2f7effc841ab9e5ee425eda1 (diff)
parent03d078796ad31eb55d70ad0aa61254b301e989a6 (diff)
downloadcru-ea4b0966d8eb5a8e76dfbe4d833a07a4797a3284.tar.gz
cru-ea4b0966d8eb5a8e76dfbe4d833a07a4797a3284.tar.bz2
cru-ea4b0966d8eb5a8e76dfbe4d833a07a4797a3284.zip
Merge branch 'testing' into 'master'
Add CI. See merge request crupest/CruUI!5
Diffstat (limited to 'src/system_headers.h')
-rw-r--r--src/system_headers.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/system_headers.h b/src/system_headers.h
new file mode 100644
index 00000000..99c091e1
--- /dev/null
+++ b/src/system_headers.h
@@ -0,0 +1,21 @@
+#pragma once
+
+
+//include system headers
+
+#define NOMINMAX
+#define WIN32_LEAN_AND_MEAN
+#include <Windows.h>
+#include <windowsx.h>
+
+#pragma comment(lib, "D3D11.lib")
+#include <d3d11.h>
+
+#pragma comment(lib, "D2d1.lib")
+#include <d2d1_1.h>
+
+#pragma comment(lib, "DWrite.lib")
+#include <dwrite.h>
+
+#include <dxgi1_2.h>
+#include <wrl/client.h>