diff options
author | crupest <crupest@outlook.com> | 2018-09-01 23:28:28 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-09-01 23:28:28 +0800 |
commit | 956a401f9c955f26b7e661dc80f76bfc43fc4124 (patch) | |
tree | 8af088933c7bc08942478daddd55c92de8668359 /CruUI/system_headers.h | |
download | cru-956a401f9c955f26b7e661dc80f76bfc43fc4124.tar.gz cru-956a401f9c955f26b7e661dc80f76bfc43fc4124.tar.bz2 cru-956a401f9c955f26b7e661dc80f76bfc43fc4124.zip |
Initial commit
Diffstat (limited to 'CruUI/system_headers.h')
-rw-r--r-- | CruUI/system_headers.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/CruUI/system_headers.h b/CruUI/system_headers.h new file mode 100644 index 00000000..bd33b5f6 --- /dev/null +++ b/CruUI/system_headers.h @@ -0,0 +1,20 @@ +#pragma once + + +//include system headers + +#define NOMINMAX +#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> |