stdafx.h
来自「BCAM 1394 Driver」· C头文件 代码 · 共 41 行
H
41 行
//-----------------------------------------------------------------------------
// (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 + =
减小字号Ctrl + -
显示快捷键?