2017-10-12 02:44:44 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
2017-10-13 11:42:36 +08:00
|
|
|
// Modify the following defines if you have to target a platform prior to the ones specified below.
|
|
|
|
|
// Refer to MSDN for the latest info on corresponding values for different platforms.
|
|
|
|
|
#ifndef WINVER // Allow use of features specific to Windows 7 or later.
|
|
|
|
|
#define WINVER 0x0700 // Change this to the appropriate value to target other versions of Windows.
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef _WIN32_WINNT // Allow use of features specific to Windows 7 or later.
|
|
|
|
|
#define _WIN32_WINNT 0x0700 // Change this to the appropriate value to target other versions of Windows.
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-10-19 12:48:58 +08:00
|
|
|
#ifndef NTDDI_VERSION
|
|
|
|
|
#define NTDDI_VERSION NTDDI_WIN7
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-10-13 11:42:36 +08:00
|
|
|
#ifndef UNICODE
|
|
|
|
|
#define UNICODE
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Exclude rarely-used items from Windows headers.
|
2017-10-19 12:48:58 +08:00
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
2017-10-13 11:42:36 +08:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
2017-10-19 12:48:58 +08:00
|
|
|
#endif
|
2017-10-13 11:42:36 +08:00
|
|
|
|
2018-01-30 16:45:38 +08:00
|
|
|
#ifndef DIRECTINPUT_VERSION
|
|
|
|
|
#define DIRECTINPUT_VERSION 0x0800
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-10-13 11:42:36 +08:00
|
|
|
// Windows Header Files:
|
|
|
|
|
#include <windows.h>
|
2017-10-14 11:40:47 +08:00
|
|
|
#include <assert.h>
|
2017-10-13 11:42:36 +08:00
|
|
|
|
2017-10-15 23:58:39 +08:00
|
|
|
// C RunTime Header Files
|
2017-12-15 21:51:07 +08:00
|
|
|
#include <stdio.h>
|
2017-10-15 23:58:39 +08:00
|
|
|
#include <wchar.h>
|
2017-10-17 21:22:25 +08:00
|
|
|
#include <d2d1.h>
|
|
|
|
|
#include <d2d1helper.h>
|
|
|
|
|
#include <dwrite.h>
|
2018-01-30 16:45:38 +08:00
|
|
|
#include <dinput.h>
|
2017-10-17 21:22:25 +08:00
|
|
|
#include <wincodec.h>
|
|
|
|
|
#pragma comment(lib, "d2d1.lib")
|
|
|
|
|
#pragma comment(lib, "dwrite.lib")
|
|
|
|
|
#pragma comment(lib, "windowscodecs.lib")
|
2017-10-15 23:58:39 +08:00
|
|
|
|
2017-10-13 11:42:36 +08:00
|
|
|
|
2018-01-30 16:45:38 +08:00
|
|
|
#ifndef HINST_THISCOMPONENT
|
|
|
|
|
EXTERN_C IMAGE_DOS_HEADER __ImageBase;
|
|
|
|
|
#define HINST_THISCOMPONENT ((HINSTANCE)&__ImageBase)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
2017-10-12 23:34:13 +08:00
|
|
|
#ifndef ASSERT_IF
|
2017-10-12 02:44:44 +08:00
|
|
|
#if defined( DEBUG ) || defined( _DEBUG )
|
2018-01-30 16:45:38 +08:00
|
|
|
#define ASSERT(b, m) do {if (!(b)) { fprintf(stderr, "Assert: " #m "\n"); assert(b); }} while(0)
|
2017-10-12 02:44:44 +08:00
|
|
|
#else
|
2017-10-14 01:07:34 +08:00
|
|
|
#define ASSERT(b, m) ((void)0)
|
2017-10-12 02:44:44 +08:00
|
|
|
#endif //DEBUG || _DEBUG
|
2017-10-12 23:34:13 +08:00
|
|
|
#endif
|
2017-10-12 02:44:44 +08:00
|
|
|
|
2017-10-12 23:34:13 +08:00
|
|
|
#ifndef WARN_IF
|
2017-10-14 01:07:34 +08:00
|
|
|
#if defined( DEBUG ) || defined( _DEBUG )
|
2018-01-30 16:45:38 +08:00
|
|
|
#define WARN_IF(b, m) do {if (b) { fprintf(stderr, "Warning: " #m "\n"); }} while(0)
|
2017-10-14 01:07:34 +08:00
|
|
|
#else
|
2018-01-30 16:45:38 +08:00
|
|
|
#define WARN_IF(b, m) ((void)0)
|
2017-10-14 01:07:34 +08:00
|
|
|
#endif //DEBUG || _DEBUG
|
2018-01-30 16:45:38 +08:00
|
|
|
#endif
|