STDAFX.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #if !defined(AFX_STDAFX_H__7CE086A4_3E78_11D0_AE6B_00C04FD7D06E__INCLUDED_)
  2. #define AFX_STDAFX_H__7CE086A4_3E78_11D0_AE6B_00C04FD7D06E__INCLUDED_
  3. // stdafx.h : include file for standard system include files,
  4. //      or project specific include files that are used frequently,
  5. //      but are changed infrequently
  6. #pragma warning(disable: 4786)
  7. #define _WIN32_WINNT 0x0400
  8. #define _ATL_APARTMENT_THREADED
  9. #include <afxwin.h>
  10. #include <afxdisp.h>
  11. #include <atlbase.h>
  12. #include "cdata.h"
  13. //You may derive a class from CComModule and use it if you want to override
  14. //something, but do not change the name of _Module
  15. #ifndef _USRDLL
  16. class CExeModule : public CComModule
  17. {
  18. public:
  19. LONG Unlock();
  20. DWORD dwThreadID;
  21. };
  22. extern CExeModule _Module;
  23. #else
  24. extern CComModule _Module;
  25. #endif
  26. #include <atlcom.h>
  27. //{{AFX_INSERT_LOCATION}}
  28. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  29. #endif // !defined(AFX_STDAFX_H__7CE086A4_3E78_11D0_AE6B_00C04FD7D06E__INCLUDED)