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.

66 lines
1.4 KiB

  1. /*++
  2. Copyright (c) Microsoft Corporation
  3. Module Name:
  4. pch.h
  5. Abstract:
  6. Pre-compiled header declaration files that has to be pre-compiled
  7. into .pch file .
  8. Author:
  9. V Vijaya Bhaskar
  10. Revision History:
  11. 14-Jun-2001 : Created by V Vijaya Bhaskar ( Wipro Technologies ).
  12. --*/
  13. #ifndef __PCH__H
  14. #define __PCH__H
  15. #define CMDLINE_VERSION 200
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. #pragma once // include header file only once
  20. /*************************************************************
  21. * Public Windows Header Files *
  22. *************************************************************/
  23. #include <windows.h>
  24. #include <winerror.h>
  25. #include <shlwapi.h>
  26. /*************************************************************
  27. * C Header Files *
  28. *************************************************************/
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include <string.h>
  32. #include <tchar.h>
  33. #include <wchar.h>
  34. #include <time.h>
  35. #include <malloc.h>
  36. #include <strsafe.h>
  37. /*************************************************************
  38. * Common Header Files *
  39. *************************************************************/
  40. #include "cmdline.h"
  41. #include "cmdlineres.h"
  42. #include "resource.h"
  43. #ifdef __cplusplus
  44. }
  45. #endif
  46. #endif // __PCH__H