?? stdafx.h
字號:
// stdafx.h : 標準系統包含文件的包含文件,
// 或是常用但不常更改的項目特定的包含文件
//
#pragma once
#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN // 從 Windows 標頭中排除不常使用的資料
#endif
// 如果您必須使用下列所指定的平臺之前的平臺,則修改下面的定義。
// 有關不同平臺的相應值的最新信息,請參考 MSDN。
#ifndef WINVER // 允許使用 Windows 95 和 Windows NT 4 或更高版本的特定功能。
#define WINVER 0x0400 //為 Windows98 和 Windows 2000 及更新版本改變為適當的值。
#endif
#ifndef _WIN32_WINNT // 允許使用 Windows NT 4 或更高版本的特定功能。
#define _WIN32_WINNT 0x0400 //為 Windows98 和 Windows 2000 及更新版本改變為適當的值。
#endif
#ifndef _WIN32_WINDOWS // 允許使用 Windows 98 或更高版本的特定功能。
#define _WIN32_WINDOWS 0x0410 //為 Windows Me 及更新版本改變為適當的值。
#endif
#ifndef _WIN32_IE // 允許使用 IE 4.0 或更高版本的特定功能。
#define _WIN32_IE 0x0400 //為 IE 5.0 及更新版本改變為適當的值。
#endif
#include <atlbase.h>
//#include <crtdbg.h>
//#include <windows.h>
// TODO: 在此處引用程序要求的附加頭文件
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -