stdafx.h

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

H
45
字号
//-----------------------------------------------------------------------------
//  (c) 2002 by Basler Vision Technologies
//  Section:  Vision Components
//  Project:  BCAM
//  $Header: stdafx.h, 6, 15.06.2004 09:35:48, Moebius, V.$
//-----------------------------------------------------------------------------
/**
  \file     stdafx.h
  \brief    precompiled header file
*/

#pragma once

//! Bcam needs at least Win2k
#define WINVER          0x500

//! Makes sure the right version of the internet explorer is used
#define _WIN32_IE       0x0400

//! Makes sure the right version of the richedit control is used 
#define _RICHEDIT_VER   0x0100

#include <atlbase.h>
#include <atlstr.h>
#if _MSC_VER >= 1300 
// tell the WTL to use the ATL/MFC shared classes 
#define _WTL_NO_WTYPES
#define _WTL_NO_CSTRING
#endif
#include <atlapp.h>

extern CAppModule _Module;

#include <atlwin.h>

#include <atlframe.h>
#include <atlctrls.h>
#include <atldlgs.h>
#include <atlctrlw.h>
#include <atlscrl.h>
#include <atlcrack.h>

#include <BcamUtility.h>
#include <BvcDib.h>
using namespace Bvc;

⌨️ 快捷键说明

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