stdafx.h

来自「Visual C++ 游戏开发与设计实例 源代码(所有)」· C头文件 代码 · 共 26 行

H
26
字号
//////////////////////////////////////////////
//
// General Include files for the Lib
//
/////////////////////////////////////////////
#ifndef DIRECT3D_VERSION
#define DIRECT3D_VERSION         0x0800
#endif  //DIRECT3D_VERSION

#define DIRECTINPUT_VERSION 0x0800

#include <windows.h>
#include <ddraw.h>
#include <ddrawex.h>
#include <dinput.h>
#include <dxerr8.h>
#include <stdio.h>
#include <stdarg.h>

#ifdef _APP_LIB
	#define CLS_IMPEXP __declspec(dllexport)
#else
	#define CLS_IMPEXP __declspec(dllimport)
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?