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.

76 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. // Wipro Technologies
  17. //
  18. // Revision History:
  19. //
  20. // 14-Jun-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. #if !defined( UNICODE ) && !defined( _UNICODE )
  30. #define _UNICODE
  31. #define UNICODE
  32. #endif
  33. // ignore version 1.0 macros
  34. #define CMDLINE_VERSION 200
  35. //
  36. // public Windows header files
  37. //
  38. #ifdef WIN32
  39. #include <windows.h>
  40. #else
  41. #include <conio.h>
  42. #endif
  43. #include <tchar.h>
  44. #include <winerror.h>
  45. //
  46. // public C header files
  47. //
  48. #include <stdio.h>
  49. #include <string.h>
  50. #include <time.h>
  51. #include <stdlib.h>
  52. #include <ctype.h>
  53. #include <Wincon.h>
  54. #include <shlwapi.h>
  55. #include <errno.h>
  56. #include <strsafe.h>
  57. //
  58. // private Common header files
  59. //
  60. #include "cmdlineres.h"
  61. #include "cmdline.h"
  62. #endif // __PCH_H