Crypt Library Demo 1.00

stdafx.h

Go to the documentation of this file.
00001 
00002 // stdafx.h : include file for standard system include files,
00003 // or project specific include files that are used frequently,
00004 // but are changed infrequently
00005 
00006 #pragma once
00007 
00008 #ifndef _SECURE_ATL
00009 #define _SECURE_ATL 1
00010 #endif
00011 
00012 #ifndef VC_EXTRALEAN
00013 #define VC_EXTRALEAN            // Exclude rarely-used stuff from Windows headers
00014 #endif
00015 
00016 #include "targetver.h"
00017 
00018 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS      // some CString constructors will be explicit
00019 
00020 // turns off MFC's hiding of some common and often safely ignored warning messages
00021 #define _AFX_ALL_WARNINGS
00022 
00023 #include <afxwin.h>         // MFC core and standard components
00024 #include <afxext.h>         // MFC extensions
00025 #include <afxdisp.h>        // MFC Automation classes
00026 
00027 #ifndef _AFX_NO_OLE_SUPPORT
00028 #include <afxdtctl.h>           // MFC support for Internet Explorer 4 Common Controls
00029 #endif
00030 #ifndef _AFX_NO_AFXCMN_SUPPORT
00031 #include <afxcmn.h>             // MFC support for Windows Common Controls
00032 #endif // _AFX_NO_AFXCMN_SUPPORT
00033 
00034 #include <afxcontrolbars.h>     // MFC support for ribbons and control bars
00035 
00036 #ifdef _UNICODE
00037 #if defined _M_IX86
00038 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
00039 #elif defined _M_IA64
00040 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
00041 #elif defined _M_X64
00042 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
00043 #else
00044 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
00045 #endif
00046 #endif
00047 
00048 
 All Classes Files Functions Variables Enumerator Defines