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

模拟服务器

开发平台:

C/C++

  1. //-----------------------------------------------------------------------------
  2. // File: asysta.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(0c733a95-2a1c-11ce-ade5-00aa0044773d)
  14. interface IDBAsynchStatus : IUnknown {
  15. [local]
  16. HRESULT Abort(
  17. [in] HCHAPTER hChapter,
  18. [in] DBASYNCHOP eOperation
  19. );
  20. [call_as(Abort)]
  21. HRESULT RemoteAbort(
  22. [in] HCHAPTER hChapter,
  23. [in] DBASYNCHOP eOperation,
  24. [out] IErrorInfo ** ppErrorInfoRem
  25. );
  26. [local]
  27. HRESULT GetStatus(
  28. [in] HCHAPTER hChapter,
  29. [in] DBASYNCHOP eOperation,
  30. [out] DBCOUNTITEM * pulProgress,
  31. [out] DBCOUNTITEM * pulProgressMax,
  32. [out] DBASYNCHPHASE * peAsynchPhase,
  33. [out] LPOLESTR * ppwszStatusText
  34. );
  35. [call_as(GetStatus)]
  36. HRESULT RemoteGetStatus(
  37. [in] HCHAPTER hChapter,
  38. [in] DBASYNCHOP eOperation,
  39. [in,out,unique] DBCOUNTITEM * pulProgress,
  40. [in,out,unique] DBCOUNTITEM * pulProgressMax,
  41. [in,out,unique] DBASYNCHPHASE * peAsynchPhase,
  42. [in,out,unique] LPOLESTR * ppwszStatusText,
  43. [out] IErrorInfo ** ppErrorInfoRem
  44. );
  45. }