Source code of Windows XP (NT5)
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.
|
|
/**********************************************************************/ /** Microsoft Windows/NT **/ /** Copyright(c) Microsoft Corp., 1991 **/ /**********************************************************************/
/*
NTStuff.hxx
Includes the components from NT needed to build the security stuff
This file should be included before *all* other files (including lmui.hxx).
FILE HISTORY: Johnl 26-Dec-1991 Scammed from David's Registry project
*/
#ifndef _NTSTUFF_HXX_
#define _NTSTUFF_HXX_
extern "C" { #ifdef WIN32
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#undef NULL
#else // OS2 or Win 3.x
// From \NT\PUBLIC\SDK\INC\CRT, EXCPT.H
typedef unsigned short EXCEPTION_DISPOSITION ;
#include <ntdef.h>
#include <ntseapi.h>
#include <ntioapi.h>
#include <ntstatus.h>
#endif
}
#endif //_NTSTUFF_HXX_
|