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.

74 lines
1.5 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]) 22-Dec-2000
  17. //
  18. // Revision History:
  19. //
  20. // Sunil G.V.N. Murali ([email protected]) 22-Dec-2000 : Created It.
  21. //
  22. // *********************************************************************************
  23. #ifndef __PCH_H
  24. #define __PCH_H
  25. #define CMDLINE_VERSION 200
  26. #pragma once // include header file only once
  27. #if !defined( SECURITY_WIN32 ) && !defined( SECURITY_KERNEL ) && !defined( SECURITY_MAC )
  28. #define SECURITY_WIN32
  29. #endif
  30. //
  31. // Private nt headers.
  32. //
  33. extern "C"
  34. {
  35. #include <nt.h>
  36. #include <ntrtl.h>
  37. #include <nturtl.h>
  38. #include <ntexapi.h>
  39. #include <Security.h>
  40. #include <SecExt.h>
  41. }
  42. //
  43. // public Windows header files
  44. //
  45. #include <windows.h>
  46. #include <tchar.h>
  47. #include <wbemidl.h>
  48. #include <chstring.h>
  49. #include <comdef.h>
  50. #include <wbemtime.h>
  51. #include <dsrole.h> // domain role information
  52. #include <strsafe.h>
  53. //
  54. // public C header files
  55. //
  56. #include <stdio.h>
  57. #include <string.h>
  58. #include <crtdbg.h>
  59. //
  60. // private Common header files
  61. //
  62. #include "cmdlineres.h"
  63. #include "cmdline.h"
  64. #endif // __PCH_H