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.

24 lines
465 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 STRICT
  8. #define _ATL_FREE_THREADED
  9. #define _ATL_APARTMENT_THREADED
  10. #include <atlbase.h>
  11. #include "module.h"
  12. //You may derive a class from CComModule and use it if you want to override
  13. //something, but do not change the name of _Module
  14. extern CHtmlHelpModule _Module;
  15. #include <atlcom.h>
  16. #endif