mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
735 B
54 lines
735 B
|
|
#ifndef __STDAFX_H__
|
|
#define __STDAFX_H__
|
|
|
|
#define VC_EXTRALEAN
|
|
|
|
#include <ctype.h>
|
|
|
|
extern "C"
|
|
{
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
}
|
|
|
|
#undef STRICT
|
|
#undef VERIFY
|
|
#undef ASSERT
|
|
|
|
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
|
|
#define STRICT
|
|
#ifndef _WIN32_WINNT
|
|
#define _WIN32_WINNT 0x0400
|
|
#endif
|
|
#define _ATL_APARTMENT_THREADED
|
|
|
|
|
|
|
|
#include <afxwin.h>
|
|
#include <afxdisp.h>
|
|
#include <afxext.h> // MFC extensions
|
|
#include <afxcoll.h> // collection class
|
|
#include <afxtempl.h>
|
|
#include <afxcmn.h>
|
|
|
|
#include <atlbase.h>
|
|
|
|
#include <iiscnfg.h>
|
|
#include <inetreg.h>
|
|
#include <lmcons.h>
|
|
#include <tchar.h>
|
|
|
|
#include <aclapi.h>
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
|
|
|
|
#endif // __STDAFX_H__
|