45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
|
// stdafx.h : include file for standard system include files,
|
|||
|
// or project specific include files that are used frequently, but
|
|||
|
// are changed infrequently
|
|||
|
//
|
|||
|
|
|||
|
#if !defined(AFX_STDAFX_H__F57A3BD3_E702_479A_9F06_C4BAD2BE9F88__INCLUDED_)
|
|||
|
#define AFX_STDAFX_H__F57A3BD3_E702_479A_9F06_C4BAD2BE9F88__INCLUDED_
|
|||
|
|
|||
|
#if _MSC_VER > 1000
|
|||
|
#pragma once
|
|||
|
#endif // _MSC_VER > 1000
|
|||
|
|
|||
|
/*
|
|||
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
#ifndef _WIN32_WINNT
|
|||
|
#define _WIN32_WINNT 0x0502
|
|||
|
#endif
|
|||
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>:
|
|||
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
_WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h)
|
|||
|
*/
|
|||
|
#ifndef _WIN32_WINNT
|
|||
|
#define _WIN32_WINNT 0x0502
|
|||
|
#endif
|
|||
|
|
|||
|
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
|
|||
|
|
|||
|
//#include <afxwin.h> // MFC core and standard components
|
|||
|
//#include <afxext.h> // MFC extensions
|
|||
|
//#include <afxdisp.h> // MFC Automation classes
|
|||
|
//#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
|
|||
|
#ifndef _AFX_NO_OLE_SUPPORT
|
|||
|
#endif // _AFX_NO_OLE_SUPPORT
|
|||
|
|
|||
|
// #ifndef ULONG_PTR
|
|||
|
// #define ULONG_PTR unsigned long*
|
|||
|
// #endif
|
|||
|
#include "Gdiplus.h"
|
|||
|
using namespace Gdiplus;
|
|||
|
|
|||
|
//{{AFX_INSERT_LOCATION}}
|
|||
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|||
|
|
|||
|
#endif // !defined(AFX_STDAFX_H__F57A3BD3_E702_479A_9F06_C4BAD2BE9F88__INCLUDED_)
|