📄 stdafx.h
字号:
// stdafx.h : 标准系统包含文件的包含文件
#pragma once
#define WIN32_LEAN_AND_MEAN // 从 Windows 头中排除极少使用的资料
#include <windows.h>
#include <ddraw.h>
#include <mmsystem.h>
#include <stdio.h>
#include <io.h>
#include <fcntl.h>
#include <string>
#include <ijl.h>
#include <tchar.h>
//游戏需要的lib文件载入
#pragma comment(lib,"ddraw.lib")
#pragma comment(lib,"dxguid.lib")
#pragma comment(lib,"winmm.lib")
#pragma comment(lib,"ijl15.lib")
#pragma comment(lib,"strmiids.lib")
using namespace std;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -