StephaneLenclud@8: // stdafx.h : include file for standard system include files, StephaneLenclud@8: // or project specific include files that are used frequently, StephaneLenclud@8: // but are changed infrequently StephaneLenclud@8: StephaneLenclud@8: #pragma once StephaneLenclud@8: StephaneLenclud@8: #ifndef _SECURE_ATL StephaneLenclud@8: #define _SECURE_ATL 1 StephaneLenclud@8: #endif StephaneLenclud@8: StephaneLenclud@8: #ifndef VC_EXTRALEAN StephaneLenclud@8: #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers StephaneLenclud@8: #endif StephaneLenclud@8: StephaneLenclud@8: // Modify the following defines if you have to target a platform prior to the ones specified below. StephaneLenclud@8: // Refer to MSDN for the latest info on corresponding values for different platforms. StephaneLenclud@8: #ifndef WINVER // Allow use of features specific to Windows XP or later. StephaneLenclud@8: #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows. StephaneLenclud@8: #endif StephaneLenclud@8: StephaneLenclud@8: #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later. StephaneLenclud@8: #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows. StephaneLenclud@8: #endif StephaneLenclud@8: StephaneLenclud@8: #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later. StephaneLenclud@8: #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later. StephaneLenclud@8: #endif StephaneLenclud@8: StephaneLenclud@8: #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later. StephaneLenclud@8: #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE. StephaneLenclud@8: #endif StephaneLenclud@8: StephaneLenclud@8: #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit StephaneLenclud@8: StephaneLenclud@8: // turns off MFC's hiding of some common and often safely ignored warning messages StephaneLenclud@8: #define _AFX_ALL_WARNINGS StephaneLenclud@8: StephaneLenclud@8: #include // MFC core and standard components StephaneLenclud@8: #include // MFC extensions StephaneLenclud@8: StephaneLenclud@8: StephaneLenclud@8: #include // MFC Automation classes StephaneLenclud@8: StephaneLenclud@8: StephaneLenclud@8: StephaneLenclud@8: #ifndef _AFX_NO_OLE_SUPPORT StephaneLenclud@8: #include // MFC support for Internet Explorer 4 Common Controls StephaneLenclud@8: #endif StephaneLenclud@8: #ifndef _AFX_NO_AFXCMN_SUPPORT StephaneLenclud@8: #include // MFC support for Windows Common Controls StephaneLenclud@8: #endif // _AFX_NO_AFXCMN_SUPPORT StephaneLenclud@8: StephaneLenclud@8: #include "..\\..\\API\\iMONDisplayAPI.h" StephaneLenclud@8: #pragma comment(lib, "..\\..\\API\\iMONDisplay.lib") StephaneLenclud@8: StephaneLenclud@8: StephaneLenclud@8: StephaneLenclud@8: StephaneLenclud@8: StephaneLenclud@8: #ifdef _UNICODE StephaneLenclud@8: #if defined _M_IX86 StephaneLenclud@8: #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"") StephaneLenclud@8: #elif defined _M_IA64 StephaneLenclud@8: #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"") StephaneLenclud@8: #elif defined _M_X64 StephaneLenclud@8: #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"") StephaneLenclud@8: #else StephaneLenclud@8: #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") StephaneLenclud@8: #endif StephaneLenclud@8: #endif StephaneLenclud@8: StephaneLenclud@8: