Altium C++ SDK 3.0
Loading...
Searching...
No Matches
stdafx.h
Go to the documentation of this file.
1
2// stdafx.h : include file for standard system include files,
3// or project specific include files that are used frequently,
4// but are changed infrequently
5
6#pragma once
7
8#include <SDKDDKVer.h>
9
10#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
11
12// turns off MFC's hiding of some common and often safely ignored warning messages
13#define _AFX_ALL_WARNINGS
14
15#include <afxwin.h> // MFC core and standard components
16#include <afxext.h> // MFC extensions
17
18#ifndef _AFX_NO_OLE_SUPPORT
19#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
20#endif
21#ifndef _AFX_NO_AFXCMN_SUPPORT
22#include <afxcmn.h> // MFC support for Windows Common Controls
23#endif // _AFX_NO_AFXCMN_SUPPORT
24
25#include <afxcontrolbars.h> // MFC support for ribbons and control bars
26
27#include <assert.h>
28
29#ifdef _UNICODE
30#if defined _M_IX86
31#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
32#elif defined _M_X64
33#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
34#else
35#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
36#endif
37#endif