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

Windows编程

开发平台:

Visual C++

  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. // Copyright (C) 1992-1998 Microsoft Corporation
  6. // All rights reserved.
  7. #if !defined(AFX_STDAFX_H__17A2229F_431B_11D0_B88F_00C04FD7A0F0__INCLUDED_)
  8. #define AFX_STDAFX_H__17A2229F_431B_11D0_B88F_00C04FD7A0F0__INCLUDED_
  9. #define VC_EXTRALEAN        // Exclude rarely-used stuff from Windows headers
  10. #include <afxwin.h>         // MFC core and standard components
  11. #include <afxdisp.h>
  12. #include <atlbase.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. extern CComModule _Module;
  16. #include <atlcom.h>
  17. // Developer Studio Object Model
  18. #include <ObjModeladdauto.h>
  19. #include <ObjModelappdefs.h>
  20. #include <ObjModelappauto.h>
  21. #include <ObjModelblddefs.h>
  22. #include <ObjModelbldauto.h>
  23. #include <ObjModeltextdefs.h>
  24. #include <ObjModeltextauto.h>
  25. #include <ObjModeldbgdefs.h>
  26. #include <ObjModeldbgauto.h>
  27. /////////////////////////////////////////////////////////////////////////////
  28. // Debugging support
  29. // Use VERIFY_OK around all calls to the Developer Studio objects which
  30. //  you expect to return S_OK.
  31. // In DEBUG builds of your add-in, VERIFY_OK displays an ASSERT dialog box
  32. //  if the expression returns an HRESULT other than S_OK.  If the HRESULT
  33. //  is a success code, the ASSERT box will display that HRESULT.  If it
  34. //  is a failure code, the ASSERT box will display that HRESULT plus the
  35. //  error description string provided by the object which raised the error.
  36. // In RETAIL builds of your add-in, VERIFY_OK just evaluates the expression
  37. //  and ignores the returned HRESULT.
  38. #ifdef _DEBUG
  39. void GetLastErrorDescription(CComBSTR& bstr);       // Defined in API2Help.cpp
  40. #define VERIFY_OK(f) 
  41. HRESULT hr = (f); 
  42. if (hr != S_OK) 
  43. if (FAILED(hr)) 
  44. CComBSTR bstr; 
  45. GetLastErrorDescription(bstr); 
  46. _RPTF2(_CRT_ASSERT, "Object call returned %lxnn%S", hr, (BSTR) bstr); 
  47. else 
  48. _RPTF1(_CRT_ASSERT, "Object call returned %lx", hr); 
  49. }
  50. #else //_DEBUG
  51. #define VERIFY_OK(f) (f);
  52. #endif //_DEBUG
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_STDAFX_H__17A2229F_431B_11D0_B88F_00C04FD7A0F0__INCLUDED)