stdafx.h

来自「侯捷先生翻译的书籍《Win32多线程程序设计》的源代码。」· C头文件 代码 · 共 30 行

H
30
字号
/*
 * stdafx.h : header file
 *
 * Sample code for "Multitasking in Win32"
 * This is from Chapter 16???
 *
 * include file for standard system include files,
 * or project specific include files that are used frequently, but
 * are changed infrequently
 */

//

#define VC_EXTRALEAN		// Exclude rarely-used stuff from Windows headers

#define _WIN32_WINNT 0x0400 // for CoInitializeEx function prototype

#include <afxwin.h>         // MFC core and standard components
#include <afxext.h>         // MFC extensions
#include <afxdisp.h>        // MFC OLE automation classes
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h>			// MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT


//
// Include Definition from ComDemo DLL
//
#include "..\ComDemo.h"

⌨️ 快捷键说明

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