?? include.h
字號:
//+-----------------------------------------------------------------------------
//| Inclusion guard
//+-----------------------------------------------------------------------------
#ifndef MAGOS_INCLUDE_H
#define MAGOS_INCLUDE_H
//+-----------------------------------------------------------------------------
//| Prevents stupid warning messages
//+-----------------------------------------------------------------------------
#define DIRECTINPUT_VERSION 0x0800
//+-----------------------------------------------------------------------------
//| Prevents stupid pointer truncation warning messages
//+-----------------------------------------------------------------------------
#pragma warning(disable:4311)
#pragma warning(disable:4312)
//+-----------------------------------------------------------------------------
//| Windows included files
//+-----------------------------------------------------------------------------
#include <windows.h>
#include <commctrl.h>
#include <cctype>
#include <cmath>
#include <ctime>
//+-----------------------------------------------------------------------------
//| DirectX included files
//+-----------------------------------------------------------------------------
#include <d3dx9.h>
#include <dinput.h>
//+-----------------------------------------------------------------------------
//| STL included files
//+-----------------------------------------------------------------------------
#include <algorithm>
#include <fstream>
#include <sstream>
#include <string>
#include <limits>
#include <vector>
#include <list>
#include <map>
#include <set>
//+-----------------------------------------------------------------------------
//| Removes stupid macros
//+-----------------------------------------------------------------------------
#undef min
#undef max
//+-----------------------------------------------------------------------------
//| End of inclusion guard
//+-----------------------------------------------------------------------------
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -