Leaked source code of windows server 2003
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.

70 lines
1.3 KiB

  1. // *********************************************************************************
  2. //
  3. // Copyright (c) Microsoft Corporation
  4. //
  5. // Module Name:
  6. //
  7. // pch.h
  8. //
  9. // Abstract:
  10. //
  11. // This module contains all necessary header files required by DriverQuery.cpp module.
  12. //
  13. //
  14. // Author:
  15. //
  16. // J.S.Vasu 31-Oct-2000
  17. //
  18. // Revision History:
  19. // Created on 31-0ct-2000 by J.S.Vasu
  20. //
  21. // *********************************************************************************
  22. #ifndef __PCH_H
  23. #define __PCH_H
  24. #pragma once // include header file only once
  25. #if !defined( SECURITY_WIN32 ) && !defined( SECURITY_KERNEL ) && !defined( SECURITY_MAC )
  26. #define SECURITY_WIN32
  27. #endif
  28. #include <nt.h>
  29. #include <ntrtl.h>
  30. #include <nturtl.h>
  31. #include <ntexapi.h>
  32. #include <Security.h>
  33. #include <SecExt.h>
  34. //
  35. // public Windows header files
  36. //
  37. #include <windows.h>
  38. #include <winperf.h>
  39. #include <lmcons.h>
  40. #include <lmerr.h>
  41. #include <dbghelp.h>
  42. #include <psapi.h>
  43. #ifndef _WIN64
  44. #include <Wow64t.h>
  45. #endif
  46. //
  47. // public C header files
  48. //
  49. #include <stdio.h>
  50. #include <stdlib.h>
  51. #include <string.h>
  52. #include <conio.h>
  53. #include <tchar.h>
  54. #include <crtdbg.h>
  55. //
  56. // private Common header files
  57. //
  58. #include "cmdline.h"
  59. #include "cmdlineres.h"
  60. #endif // __PCH_H