You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
C
47 lines
1.2 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(__STDAFX_H__)
|
|
#define __STDAFX_H__
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#pragma warning(disable : 4995)
|
|
// #pragma warning(disable : 4100)
|
|
|
|
#if _MSC_VER > 1200 // Version Higher than VC6
|
|
#ifndef _WIN32_WINNT
|
|
#define _WIN32_WINNT 0x0502 // phyu 19Jan2012
|
|
#endif
|
|
#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 OLE automation classes
|
|
#ifndef _AFX_NO_AFXCMN_SUPPORT
|
|
#include <afxcmn.h> // MFC support for Windows Common Controls
|
|
#include <afxdisp.h>
|
|
#include <afxmt.h>
|
|
#include "windef.h"
|
|
#include <afxcoll.h>
|
|
|
|
// user application header files (non-MFC)
|
|
#include "DBini.h"
|
|
#include "cmnhdr.h"
|
|
#include "CommonDef.h"
|
|
#include "structure.h"
|
|
#include "DisplayMsg.h"
|
|
#include "mcctrdllresource.h"
|
|
|
|
#endif // _AFX_NO_AFXCMN_SUPPORT
|
|
|
|
// Additional AFX declarations
|
|
|
|
#endif // !defined(__STDAFX_H__)
|