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.

67 lines
1.2 KiB

  1. // File: Precomp.h
  2. // Standard Windows SDK includes
  3. #include <windows.h>
  4. #pragma warning( disable : 4786 )
  5. // default threading model
  6. #define _ATL_APARTMENT_THREADED
  7. // We should really only put this in for w2k
  8. #define _ATL_NO_DEBUG_CRT
  9. #define _ATL_NO_FORCE_LIBS
  10. #if 0
  11. #define _ATL_DEBUG_QI
  12. #define _ATL_DEBUG_INTERFACES
  13. #define ATL_TRACE_LEVEL 4
  14. #else
  15. #define ATL_TRACE_LEVEL 0
  16. #endif
  17. // Our Override of ATLTRACE and other debug stuff
  18. #include <ConfDbg.h>
  19. // We should really only put this in for w2k
  20. #define _ASSERTE(expr) ASSERT(expr)
  21. // ATLTRACE and other stuff
  22. #include <atlbase.h>
  23. #include <shellapi.h>
  24. //You may derive a class from CComModule and use it if you want to override
  25. //something, but do not change the name of _Module
  26. extern CComModule _Module;
  27. #include <atlcom.h>
  28. #include <atlctl.h>
  29. #include <limits.h>
  30. #include <shlobj.h>
  31. #include <shlwapi.h>
  32. #include <debspew.h>
  33. #include <confreg.h>
  34. #include <oprahcom.h>
  35. #include <regentry.h>
  36. #include <cstring.hpp>
  37. #include <oblist.h>
  38. #include <dllutil.h>
  39. // COM interfaces
  40. //
  41. #include <ConfCli.h>
  42. #include "siGlobal.h"
  43. #include "CLink.h"
  44. #include "clRefCnt.hpp"
  45. #include "clEnumFt.hpp"
  46. class CConfLink;