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.

67 lines
1.4 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. //
  15. // Author:
  16. //
  17. // Akhil Gokhale ([email protected]) 1-Nov-2000
  18. //
  19. // Revision History:
  20. //
  21. // Akhil Gokhale ([email protected]) 1-Nov-2000 : Created It.
  22. // ****************************************************************************
  23. #ifndef __PCH_H
  24. #define __PCH_H
  25. #pragma once // include header file only once
  26. extern "C"
  27. {
  28. #include <assert.h>
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include <string.h>
  32. #include <ctype.h>
  33. #include <memory.h>
  34. #include <ntos.h>
  35. #include <ntioapi.h>
  36. #include <nturtl.h>
  37. #include <TCHAR.h>
  38. #include <windows.h>
  39. #include <dbghelp.h>
  40. #include <Winbase.h>
  41. #include <lm.h>
  42. #include <Lmserver.h>
  43. #include <winerror.h>
  44. }
  45. //
  46. // public C header files
  47. //
  48. #include <tchar.h>
  49. #include <crtdbg.h>
  50. #include <comdef.h>
  51. #include <winsock2.h>
  52. #include <svcguid.h>
  53. #include <strsafe.h>
  54. //
  55. // private Common header files
  56. //
  57. // Use command line parser ver. 2
  58. #define CMDLINE_VERSION 200
  59. #include "cmdline.h"
  60. #endif // __PCH_H