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.

72 lines
1.3 KiB

  1. // *********************************************************************************
  2. //
  3. // Copyright (c) Microsoft Corporation
  4. //
  5. // Module Name:
  6. //
  7. // pch.h
  8. //
  9. // Abstract:
  10. //
  11. // pre-compiled header declaration
  12. // files that has to be pre-compiled into .pch file
  13. //
  14. // Author:
  15. //
  16. // Sunil G.V.N. Murali ([email protected]) 24-Sep-2000
  17. //
  18. // Revision History:
  19. //
  20. // Sunil G.V.N. Murali ([email protected]) 24-Sep-2000 : Created It.
  21. //
  22. // *********************************************************************************
  23. #ifndef __PCH_H
  24. #define __PCH_H
  25. #pragma once // include header file only once
  26. #if !defined( SECURITY_WIN32 ) && !defined( SECURITY_KERNEL ) && !defined( SECURITY_MAC )
  27. #define SECURITY_WIN32
  28. #endif
  29. //
  30. // Private nt headers.
  31. //
  32. extern "C"
  33. {
  34. #include <nt.h>
  35. #include <ntrtl.h>
  36. #include <nturtl.h>
  37. #include <ntexapi.h>
  38. #include <Security.h>
  39. #include <SecExt.h>
  40. }
  41. //
  42. // public Windows header files
  43. //
  44. #include <windows.h>
  45. #include <winperf.h>
  46. #include <wbemidl.h>
  47. #include <chstring.h>
  48. #include <comdef.h>
  49. #include <wbemtime.h>
  50. #include <tchar.h>
  51. #include <dbghelp.h>
  52. //
  53. // public C header files
  54. //
  55. #include <stdio.h>
  56. #include <string.h>
  57. #include <crtdbg.h>
  58. #include <errno.h>
  59. //
  60. // private Common header files
  61. //
  62. #include "cmdlineres.h"
  63. #include "cmdline.h"
  64. #endif // __PCH_H