iMONDisplayApiSample/DisplayTest/stdafx.h
changeset 8 3031cd3ebd1e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/iMONDisplayApiSample/DisplayTest/stdafx.h	Sun Apr 14 22:40:46 2013 +0200
     1.3 @@ -0,0 +1,72 @@
     1.4 +// stdafx.h : include file for standard system include files,
     1.5 +// or project specific include files that are used frequently,
     1.6 +// but are changed infrequently
     1.7 +
     1.8 +#pragma once
     1.9 +
    1.10 +#ifndef _SECURE_ATL
    1.11 +#define _SECURE_ATL 1
    1.12 +#endif
    1.13 +
    1.14 +#ifndef VC_EXTRALEAN
    1.15 +#define VC_EXTRALEAN		// Exclude rarely-used stuff from Windows headers
    1.16 +#endif
    1.17 +
    1.18 +// Modify the following defines if you have to target a platform prior to the ones specified below.
    1.19 +// Refer to MSDN for the latest info on corresponding values for different platforms.
    1.20 +#ifndef WINVER				// Allow use of features specific to Windows XP or later.
    1.21 +#define WINVER 0x0501		// Change this to the appropriate value to target other versions of Windows.
    1.22 +#endif
    1.23 +
    1.24 +#ifndef _WIN32_WINNT		// Allow use of features specific to Windows XP or later.                   
    1.25 +#define _WIN32_WINNT 0x0501	// Change this to the appropriate value to target other versions of Windows.
    1.26 +#endif						
    1.27 +
    1.28 +#ifndef _WIN32_WINDOWS		// Allow use of features specific to Windows 98 or later.
    1.29 +#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
    1.30 +#endif
    1.31 +
    1.32 +#ifndef _WIN32_IE			// Allow use of features specific to IE 6.0 or later.
    1.33 +#define _WIN32_IE 0x0600	// Change this to the appropriate value to target other versions of IE.
    1.34 +#endif
    1.35 +
    1.36 +#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS	// some CString constructors will be explicit
    1.37 +
    1.38 +// turns off MFC's hiding of some common and often safely ignored warning messages
    1.39 +#define _AFX_ALL_WARNINGS
    1.40 +
    1.41 +#include <afxwin.h>         // MFC core and standard components
    1.42 +#include <afxext.h>         // MFC extensions
    1.43 +
    1.44 +
    1.45 +#include <afxdisp.h>        // MFC Automation classes
    1.46 +
    1.47 +
    1.48 +
    1.49 +#ifndef _AFX_NO_OLE_SUPPORT
    1.50 +#include <afxdtctl.h>		// MFC support for Internet Explorer 4 Common Controls
    1.51 +#endif
    1.52 +#ifndef _AFX_NO_AFXCMN_SUPPORT
    1.53 +#include <afxcmn.h>			// MFC support for Windows Common Controls
    1.54 +#endif // _AFX_NO_AFXCMN_SUPPORT
    1.55 +
    1.56 +#include "..\\..\\API\\iMONDisplayAPI.h"
    1.57 +#pragma comment(lib, "..\\..\\API\\iMONDisplay.lib")
    1.58 +
    1.59 +
    1.60 +
    1.61 +
    1.62 +
    1.63 +#ifdef _UNICODE
    1.64 +#if defined _M_IX86
    1.65 +#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
    1.66 +#elif defined _M_IA64
    1.67 +#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
    1.68 +#elif defined _M_X64
    1.69 +#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
    1.70 +#else
    1.71 +#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
    1.72 +#endif
    1.73 +#endif
    1.74 +
    1.75 +