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.

60 lines
1.1 KiB

  1. // *********************************************************************************
  2. //
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  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. #define CMDLINE_VERSION 200
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. #pragma once // include header file only once
  30. //
  31. // public Windows header files
  32. //
  33. #include <windows.h>
  34. #include "winerror.h"
  35. //
  36. // public C header files
  37. //
  38. #include <stdio.h>
  39. #include <stdlib.h>
  40. #include <string.h>
  41. #include <tchar.h>
  42. #include <wchar.h>
  43. #include <crtdbg.h>
  44. //
  45. // private Common header files
  46. //
  47. #include "cmdline.h"
  48. #include "cmdlineres.h"
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52. #endif // __PCH_H