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.

81 lines
1.4 KiB

  1. /*++=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. common.h
  5. Abstract:
  6. Common includes used in the project. This file is built into a PCH.
  7. Author:
  8. Paul M Midgen (pmidge) 15-May-2000
  9. Revision History:
  10. 15-May-2000 pmidge
  11. Created
  12. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--*/
  13. #ifndef _COMMON_H_
  14. #define _COMMON_H_
  15. #define _WIN32_WINNT 0x0500
  16. #define _UNICODE
  17. #define UNICODE
  18. //
  19. // OS includes
  20. //
  21. #if defined(__cplusplus)
  22. extern "C" {
  23. #endif
  24. #include <windows.h>
  25. #include <shellapi.h>
  26. #include <advpub.h>
  27. #include <oleauto.h>
  28. #include <objbase.h>
  29. #include <ocidl.h>
  30. #include <olectl.h>
  31. #include <activscp.h>
  32. #include <activdbg.h>
  33. #include <winsock2.h>
  34. #include <mswsock.h>
  35. #include <winhttp.h>
  36. #include <httprequest.h>
  37. #include <commctrl.h>
  38. #if defined(__cplusplus)
  39. }
  40. #endif
  41. //
  42. // w3spoof includes
  43. //
  44. #pragma warning( disable : 4100 ) // unreferenced formal parameter
  45. #include <resources.h>
  46. #include <mem.h>
  47. #include <utils.h>
  48. #include <debug.h>
  49. #include <hashtable.h>
  50. #include <linklist.h>
  51. #include <stores.h>
  52. #include <dispids.h>
  53. #include <om_ifaces.h> // generated
  54. #include <w3srt.h>
  55. #include <int_ifaces.h>
  56. #include <registry.h>
  57. #include <om.h>
  58. #include <w3sobj.h>
  59. #endif /* _COMMON_H_ */