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.

43 lines
905 B

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corp., 1991 **/
  4. /**********************************************************************/
  5. /*
  6. NTStuff.hxx
  7. Includes the components from NT needed to build the security stuff
  8. This file should be included before *all* other files (including
  9. lmui.hxx).
  10. FILE HISTORY:
  11. Johnl 26-Dec-1991 Scammed from David's Registry project
  12. */
  13. #ifndef _NTSTUFF_HXX_
  14. #define _NTSTUFF_HXX_
  15. extern "C"
  16. {
  17. #ifdef WIN32
  18. #include <nt.h>
  19. #include <ntrtl.h>
  20. #include <nturtl.h>
  21. #undef NULL
  22. #else // OS2 or Win 3.x
  23. // From \NT\PUBLIC\SDK\INC\CRT, EXCPT.H
  24. typedef unsigned short EXCEPTION_DISPOSITION ;
  25. #include <ntdef.h>
  26. #include <ntseapi.h>
  27. #include <ntioapi.h>
  28. #include <ntstatus.h>
  29. #endif
  30. }
  31. #endif //_NTSTUFF_HXX_