diff options
author | Yuqian Yang <crupest@outlook.com> | 2018-09-25 05:30:01 +0000 |
---|---|---|
committer | Yuqian Yang <crupest@outlook.com> | 2018-09-25 05:30:01 +0000 |
commit | ea4b0966d8eb5a8e76dfbe4d833a07a4797a3284 (patch) | |
tree | e5918c686f27363bfacf7d47e4b93617872b908d /src/system_headers.h | |
parent | 001e1d955132a02a2f7effc841ab9e5ee425eda1 (diff) | |
parent | 03d078796ad31eb55d70ad0aa61254b301e989a6 (diff) | |
download | cru-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.h | 21 |
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> |