StdAfx.h
上传用户:quanyou
上传日期:2022-06-07
资源大小:39k
文件大小:2k
源码类别:

xml/soap/webservice

开发平台:

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. #if !defined(AFX_STDAFX_H__9871EC13_015A_4935_BDD3_559C429A72CC__INCLUDED_)
  6. #define AFX_STDAFX_H__9871EC13_015A_4935_BDD3_559C429A72CC__INCLUDED_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  11. #include <afxwin.h>         // MFC core and standard components
  12. #include <afxext.h>         // MFC extensions
  13. #include <afxdisp.h>        // MFC Automation classes
  14. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  15. #ifndef _AFX_NO_AFXCMN_SUPPORT
  16. #include <afxcmn.h> // MFC support for Windows Common Controls
  17. #endif // _AFX_NO_AFXCMN_SUPPORT
  18. //For pure SAX interface and you don't want to trap com error as C++ exception, 
  19. //you can do #import with raw_interfaces_only
  20. #import <msxml3.dll> raw_interfaces_only
  21. //otherwise, uncomment this line
  22. //#import <msxml3.dll> high_method_prefix("_") raw_method_prefix("")
  23. using namespace MSXML2;
  24. #include <assert.h>
  25. #include <atlbase.h>
  26. void dump_com_error(_com_error &e);
  27. void dump_com_error(_com_error &e)
  28. {
  29. printf("Errorn");
  30. printf("atCode = %08lxn", e.Error());
  31. printf("atCode meaning = %s", e.ErrorMessage());
  32. _bstr_t bstrSource(e.Source());
  33. _bstr_t bstrDescription(e.Description());
  34. printf("atSource = %sn", (LPCSTR) bstrSource);
  35. printf("atDescription = %sn", (LPCSTR) bstrDescription);
  36. }
  37. #define S_ABORT_WANTED ((HRESULT)0x800400caL)
  38. //{{AFX_INSERT_LOCATION}}
  39. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  40. #endif // !defined(AFX_STDAFX_H__9871EC13_015A_4935_BDD3_559C429A72CC__INCLUDED_)