stdafx.h

来自「深入剖析Visual C++编程技术及应用实例」· C头文件 代码 · 共 37 行

H
37
字号
#if !defined(AFX_STDAFX_H__ADA7D7E8_E2C1_11D3_84C7_0080450EA020__INCLUDED_)
#define AFX_STDAFX_H__ADA7D7E8_E2C1_11D3_84C7_0080450EA020__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#define VC_EXTRALEAN

#include <afxwin.h>
#include <afxext.h>
#include <afxdtctl.h>
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h>
#endif // _AFX_NO_AFXCMN_SUPPORT

// Added it here just in case somebody dont have the latest headers 
// Have to update the build environ, copied from commctrl.h
#define RBBS_USECHEVRON				0x00000200 
#define RBN_CHEVRONPUSHED			(RBN_FIRST - 10)
typedef struct tagNMREBARCHEVRON
{
    NMHDR hdr;
    UINT uBand;
    UINT wID;
    LPARAM lParam;
    RECT rc;
    LPARAM lParamNM;

} NMREBARCHEVRON, *LPNMREBARCHEVRON;


//{{AFX_INSERT_LOCATION}}


#endif // !defined(AFX_STDAFX_H__ADA7D7E8_E2C1_11D3_84C7_0080450EA020__INCLUDED_)

⌨️ 快捷键说明

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