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.

45 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. stdafx.h
  5. Abstract:
  6. standard com include file
  7. Author:
  8. Xiaoxi Tan (xtan) 11-May-2001
  9. --*/
  10. // stdafx.h : include file for standard system include files,
  11. // or project specific include files that are used frequently,
  12. // but are changed infrequently
  13. #if !defined(AFX_STDAFX_H__E58F938B_4BAB_4FC1_BC5C_60D1A67E6C7E__INCLUDED_)
  14. #define AFX_STDAFX_H__E58F938B_4BAB_4FC1_BC5C_60D1A67E6C7E__INCLUDED_
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. #define STRICT 1
  19. #ifndef _WIN32_WINNT
  20. #define _WIN32_WINNT 0x0400
  21. #endif
  22. #define _ATL_APARTMENT_THREADED
  23. #include <atlbase.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. //{{AFX_INSERT_LOCATION}}
  29. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  30. #endif // !defined(AFX_STDAFX_H__E58F938B_4BAB_4FC1_BC5C_60D1A67E6C7E__INCLUDED)