1// stdafx.h : include file for standard system include files,
2//  or project specific include files that are used frequently, but
3//      are changed infrequently
4//
5
6/*
7 * Minimum version is Windows XP
8 */
9#define _WIN32_WINNT 0x0501
10
11#ifndef _CRT_SECURE_NO_DEPRECATE
12#define _CRT_SECURE_NO_DEPRECATE 1
13#endif
14
15#if !defined(AFX_STDAFX_H__61537819_39FC_11D3_A97A_00105A12BD65__INCLUDED_)
16#define AFX_STDAFX_H__61537819_39FC_11D3_A97A_00105A12BD65__INCLUDED_
17
18#if _MSC_VER > 1000
19#pragma once
20#endif // _MSC_VER > 1000
21
22#define VC_EXTRALEAN		// Exclude rarely-used stuff from Windows headers
23
24#include <afxwin.h>         // MFC core and standard components
25#include <afxext.h>         // MFC extensions
26#include <afxdtctl.h>		// MFC support for Internet Explorer 4 Common Controls
27#ifndef _AFX_NO_AFXCMN_SUPPORT
28#include <afxcmn.h>			// MFC support for Windows Common Controls
29#endif // _AFX_NO_AFXCMN_SUPPORT
30
31
32//{{AFX_INSERT_LOCATION}}
33// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
34
35#endif // !defined(AFX_STDAFX_H__61537819_39FC_11D3_A97A_00105A12BD65__INCLUDED_)
36