stdafx.h

来自「BCAM 1394 Driver」· C头文件 代码 · 共 37 行

H
37
字号
//-----------------------------------------------------------------------------
//  (c) 2002 by Basler Vision Technologies
//  Section:  Vision Components
//  Project:  BCAM
//  $Header: StdAfx.h, 4, 17.09.2003 17:15:59, 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
#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 + -
显示快捷键?