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

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__D93F3A0F_3DA9_11D0_B889_00C04FD7A0F0__INCLUDED_)
  8. #define AFX_STDAFX_H__D93F3A0F_3DA9_11D0_B889_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 <afxcmn.h>
  13. #include <afxdlgs.h>
  14. #include <afxext.h>
  15. #include <atlbase.h>
  16. //You may derive a class from CComModule and use it if you want to override
  17. //something, but do not change the name of _Module
  18. extern CComModule _Module;
  19. #include <atlcom.h>
  20. // Developer Studio Object Model
  21. #include <ObjModeladdauto.h>
  22. #include <ObjModelappdefs.h>
  23. #include <ObjModelappauto.h>
  24. #include <ObjModelblddefs.h>
  25. #include <ObjModelbldauto.h>
  26. #include <ObjModeltextdefs.h>
  27. #include <ObjModeltextauto.h>
  28. #include <ObjModeldbgdefs.h>
  29. #include <ObjModeldbgauto.h>
  30. /////////////////////////////////////////////////////////////////////////////
  31. // Debugging support
  32. // Use VERIFY_OK around all calls to the Developer Studio objects which
  33. //  you expect to return S_OK.
  34. // In DEBUG builds of your add-in, VERIFY_OK displays an ASSERT dialog box
  35. //  if the expression returns an HRESULT other than S_OK.  If the HRESULT
  36. //  is a success code, the ASSERT box will display that HRESULT.  If it
  37. //  is a failure code, the ASSERT box will display that HRESULT plus the
  38. //  error description string provided by the object which raised the error.
  39. // In RETAIL builds of your add-in, VERIFY_OK just evaluates the expression
  40. //  and ignores the returned HRESULT.
  41. #ifdef _DEBUG
  42. void GetLastErrorDescription(CComBSTR& bstr);       // Defined in AutoBld.cpp
  43. #define VERIFY_OK(f) 
  44. HRESULT hr = (f); 
  45. if (hr != S_OK) 
  46. if (FAILED(hr)) 
  47. CComBSTR bstr; 
  48. GetLastErrorDescription(bstr); 
  49. _RPTF2(_CRT_ASSERT, "Object call returned %lxnn%S", hr, (BSTR) bstr); 
  50. else 
  51. _RPTF1(_CRT_ASSERT, "Object call returned %lx", hr); 
  52. }
  53. #else //_DEBUG
  54. #define VERIFY_OK(f) (f)
  55. #endif //_DEBUG
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_STDAFX_H__D93F3A0F_3DA9_11D0_B889_00C04FD7A0F0__INCLUDED)