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.

56 lines
858 B

  1. /*++
  2. Copyright (c) Microsoft Corporation
  3. Module Name:
  4. pch.h
  5. Abstract:
  6. Pre-compiled header declaration
  7. files that has to be pre-compiled into .pch file
  8. Author:
  9. Wipro Technologies 22-June.-2001 (Created it)
  10. Revision History:
  11. Wipro Technologies
  12. --*/
  13. #ifndef __PCH_H
  14. #define __PCH_H
  15. #pragma once // include header file only once
  16. //
  17. // public Windows header files
  18. #define CMDLINE_VERSION 200
  19. #include <windows.h>
  20. #include <shlwapi.h>
  21. #include <tchar.h>
  22. #include <strsafe.h>
  23. //
  24. // public C header files
  25. //
  26. #include <stdio.h>
  27. #include <stdlib.h>
  28. #include <conio.h>
  29. #include <ctype.h>
  30. #include <errno.h>
  31. //
  32. // private Common header files
  33. //
  34. #include "cmdlineres.h"
  35. #include "cmdline.h"
  36. // End of file pch.h
  37. #endif // __PCH_H