JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
stdafx.h
Go to the documentation of this file.
1
2// stdafx.h : 標準のシステム インクルード ファイルのインクルード ファイル、または
3// 参照回数が多く、かつあまり変更されない、プロジェクト専用のインクルード ファイル
4// を記述します。
5
6#pragma once
7#pragma warning(disable:4005) // マクロの再定義
8
9
10#ifndef _SECURE_ATL
11#define _SECURE_ATL 1
12#endif
13
14#ifndef VC_EXTRALEAN
15#define VC_EXTRALEAN // Windows ヘッダーから使用されていない部分を除外します。
16#endif
17
18#include "targetver.h"
19
20
21#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 一部の CString コンストラクタは明示的です。
22
23// 一般的で無視しても安全な MFC の警告メッセージの一部の非表示を解除します。
24#define _AFX_ALL_WARNINGS
25
26#include <afxwin.h> // MFC のコアおよび標準コンポーネント
27#include <afxext.h> // MFC の拡張部分
28#include <afxdisp.h> // MFC オートメーション クラス
29
30#ifndef _AFX_NO_OLE_SUPPORT
31#include <afxdtctl.h> // MFC の Internet Explorer 4 コモン コントロール サポート
32#endif
33#ifndef _AFX_NO_AFXCMN_SUPPORT
34#include <afxcmn.h> // MFC の Windows コモン コントロール サポート
35#endif // _AFX_NO_AFXCMN_SUPPORT
36
37//#include <afxcontrolbars.h> // MFC におけるリボンとコントロール バーのサポート
38
39
40
41#ifdef _UNICODE
42#if defined _M_IX86
43#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
44#elif defined _M_IA64
45#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
46#elif defined _M_X64
47#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
48#else
49#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
50#endif
51#endif