📄 stdafx.h
字号:
//-----------------------------------------------------------------------------
// (c) 2002 by Basler Vision Technologies
// Section: Vision Components
// Project: BCAM
// $Header: StdAfx.h, 4, 30.09.2003 19:08:55, Nebelung, H.$
//-----------------------------------------------------------------------------
/**
\file StdAfx.h
\brief precompiled header file
*/
#pragma once
// This prevents a lot of silly warnings regarding the use of the STL
#pragma warning (disable: 4786)
// This tells BCAM to use the MFC
#define USE_MFC
// BCAM can be used with Windows >= Win2k only
#define WINVER 0x0500
#define ATLTRACE TRACE
#define ATLASSERT ASSERT
#include <BcamUtility.h>
/////////////////////////// MFC stuff ////////////////////////////////////////////////////
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT
//{{AFX_INSERT_LOCATION}}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -