errlup.idl
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:2k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //-----------------------------------------------------------------------------
  2. // File: errlup.idl
  3. //
  4. // Copyright: Copyright (c) Microsoft Corporation          
  5. //
  6. // Contents:  OLE DB interface definition
  7. //
  8. // Comments: 
  9. //
  10. //-----------------------------------------------------------------------------
  11. #include "idlmulti.h"
  12. //
  13.     REMOTED_INTERFACE(0c733a66-2a1c-11ce-ade5-00aa0044773d)
  14. interface IErrorLookup : IUnknown {
  15. [local]
  16. HRESULT GetErrorDescription(
  17. [in] HRESULT hrError,
  18. [in] DWORD dwLookupID,
  19. [in] DISPPARAMS * pdispparams,
  20. [in] LCID lcid,
  21. [out] BSTR * pbstrSource,
  22. [out] BSTR * pbstrDescription
  23. );
  24. [call_as(GetErrorDescription)]
  25. HRESULT RemoteGetErrorDescription(
  26. [in] HRESULT hrError,
  27. [in] DWORD dwLookupID,
  28. [in] DISPPARAMS * pdispparams,
  29. [in] LCID lcid,
  30. [out] BSTR * pbstrSource,
  31. [out] BSTR * pbstrDescription,
  32. [out] IErrorInfo ** ppErrorInfoRem
  33. );
  34. [local]
  35. HRESULT GetHelpInfo(
  36. [in] HRESULT hrError,
  37. [in] DWORD dwLookupID,
  38. [in] LCID lcid,
  39. [out] BSTR * pbstrHelpFile,
  40. [out] DWORD * pdwHelpContext
  41. );
  42. [call_as(GetHelpInfo)]
  43. HRESULT RemoteGetHelpInfo(
  44. [in] HRESULT hrError,
  45. [in] DWORD dwLookupID,
  46. [in] LCID lcid,
  47. [out] BSTR * pbstrHelpFile,
  48. [out] DWORD * pdwHelpContext,
  49. [out] IErrorInfo ** ppErrorInfoRem
  50. );
  51. [local]
  52. HRESULT ReleaseErrors(
  53. [in] const DWORD dwDynamicErrorID
  54. );
  55. [call_as(ReleaseErrors)]
  56. HRESULT RemoteReleaseErrors(
  57. [in] const DWORD dwDynamicErrorID,
  58. [out] IErrorInfo ** ppErrorInfoRem
  59. );
  60. }