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.

16 lines
380 B

  1. // ATLINC.H: Common includes used primarily for ATL
  2. #ifndef __ATLINC_H__
  3. #define __ATLINC_H__
  4. #define _WIN32_WINNT 0x0400
  5. #define _ATL_FREE_THREADED
  6. #define _ATL_NO_UUIDOF
  7. #include <atlbase.h>
  8. //You may derive a class from CComModule and use it if you want to override
  9. //something, but do not change the name of _Module
  10. extern CComModule _Module;
  11. #include <atlcom.h>
  12. #endif