StdAfx.h
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. // Stdafx.h : include file for standard system include files,
  2. //  or project specific include files that are used frequently, but
  3. //      are changed infrequently
  4. //
  5. #if !defined(AFX_STDAFX_H__AC72670E_2977_11D1_B2F3_006008040780__INCLUDED_)
  6. #define AFX_STDAFX_H__AC72670E_2977_11D1_B2F3_006008040780__INCLUDED_
  7. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  8. #include <afxwin.h>         // MFC core and standard components
  9. #include <afxdisp.h>
  10. #include <atlbase.h>
  11. //You may derive a class from CComModule and use it if you want to override
  12. //something, but do not change the name of _Module
  13. extern CComModule _Module;
  14. #include <atlcom.h>
  15. // Developer Studio Object Model
  16. #include <ObjModeladdauto.h>
  17. #include <ObjModelappdefs.h>
  18. #include <ObjModelappauto.h>
  19. #include <ObjModelblddefs.h>
  20. #include <ObjModelbldauto.h>
  21. #include <ObjModeltextdefs.h>
  22. #include <ObjModeltextauto.h>
  23. #include <ObjModeldbgdefs.h>
  24. #include <ObjModeldbgauto.h>
  25. /////////////////////////////////////////////////////////////////////////////
  26. // Debugging support
  27. // Use VERIFY_OK around all calls to the Developer Studio objects which
  28. //  you expect to return S_OK.
  29. // In DEBUG builds of your add-in, VERIFY_OK displays an ASSERT dialog box
  30. //  if the expression returns an HRESULT other than S_OK.  If the HRESULT
  31. //  is a success code, the ASSERT box will display that HRESULT.  If it
  32. //  is a failure code, the ASSERT box will display that HRESULT plus the
  33. //  error description string provided by the object which raised the error.
  34. // In RETAIL builds of your add-in, VERIFY_OK just evaluates the expression
  35. //  and ignores the returned HRESULT.
  36. #ifdef _DEBUG
  37. void GetLastErrorDescription (CComBSTR & bstr); // Defined in VisVim.cpp
  38. #define VERIFY_OK(f) 
  39. HRESULT hr = (f); 
  40. if (hr != S_OK) 
  41. if (FAILED(hr)) 
  42. CComBSTR bstr; 
  43. GetLastErrorDescription(bstr); 
  44. _RPTF2(_CRT_ASSERT, "Object call returned %lxnn%S", hr, (BSTR) bstr); 
  45. else 
  46. _RPTF1(_CRT_ASSERT, "Object call returned %lx", hr); 
  47. }
  48. #else //_DEBUG
  49. #define VERIFY_OK(f) (f);
  50. #endif //_DEBUG
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_STDAFX_H__AC72670E_2977_11D1_B2F3_006008040780__INCLUDED)