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.
45 lines
707 B
45 lines
707 B
//
|
|
//
|
|
// PURPOSE: Header files that should be in the precompiled header.
|
|
|
|
//
|
|
// PLATFORMS:
|
|
// Windows NT
|
|
//
|
|
//
|
|
#ifndef _PRECOMP_H
|
|
#define _PRECOMP_H
|
|
|
|
|
|
// Necessary for compiling under VC.
|
|
|
|
// kill 2 lines for IA 64
|
|
//#define WINVER 0x0500
|
|
//#define _WIN32_WINNT 0x0500
|
|
|
|
|
|
// Required header files that shouldn't change often.
|
|
|
|
|
|
#include <STDDEF.H>
|
|
#include <STDLIB.H>
|
|
#include <OBJBASE.H>
|
|
#include <STDARG.H>
|
|
#include <STDIO.H>
|
|
#include <WINDEF.H>
|
|
#include <WINERROR.H>
|
|
#include <WINBASE.H>
|
|
#include <WINGDI.H>
|
|
extern "C"
|
|
{
|
|
#include <WINDDI.H>
|
|
}
|
|
#include <TCHAR.H>
|
|
#include <EXCPT.H>
|
|
#include <ASSERT.H>
|
|
#include <PRINTOEM.H>
|
|
|
|
#endif
|
|
|
|
|
|
|