Source code of Windows XP (NT5)
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.

20 lines
447 B

  1. // ATLINC.H: Common includes used primarily for ATL
  2. #ifndef __ATLINC_H__
  3. #define __ATLINC_H__
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. #define _ATL_FREE_THREADED
  8. #define _ATL_APARTMENT_THREADED
  9. #include <atlbase.h>
  10. #include "module.h"
  11. //You may derive a class from CComModule and use it if you want to override
  12. //something, but do not change the name of _Module
  13. extern CHtmlHelpModule _Module;
  14. #include <atlcom.h>
  15. #endif