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
354 B

  1. #if (!defined(BUILD_FOR_NT40))
  2. #pragma once
  3. //#define STRICT
  4. #ifndef _WIN32_WINNT
  5. #define _WIN32_WINNT 0x0400
  6. #endif
  7. #define _ATL_APARTMENT_THREADED
  8. #include "atlbase.h"
  9. //You may derive a class from CComModule and use it if you want to override
  10. //something, but do not change the name of _Module
  11. extern CComModule _Module;
  12. #include "atlcom.h"
  13. #endif