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

模拟服务器

开发平台:

C/C++

  1. //-----------------------------------------------------------------------------
  2. // File: rstinf.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(0c733a55-2a1c-11ce-ade5-00aa0044773d)
  14. interface IRowsetInfo : IUnknown {
  15. [local]
  16. HRESULT GetProperties(
  17. [in] const ULONG cPropertyIDSets,
  18. [in, size_is(cPropertyIDSets)] const DBPROPIDSET rgPropertyIDSets[],
  19. [in, out] ULONG * pcPropertySets,
  20. [out, size_is(,*pcPropertySets)] DBPROPSET ** prgPropertySets
  21. );
  22. [call_as(GetProperties)]
  23. HRESULT RemoteGetProperties(
  24. [in] ULONG cPropertyIDSets,
  25. [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets,
  26. [in, out] ULONG * pcPropertySets,
  27. [out, size_is(,*pcPropertySets)] DBPROPSET ** prgPropertySets,
  28. [out] IErrorInfo ** ppErrorInfoRem
  29. );
  30. [local]
  31. HRESULT GetReferencedRowset(
  32. [in] DBORDINAL iOrdinal,
  33. [in] REFIID riid,
  34. [out, iid_is(riid)] IUnknown ** ppReferencedRowset
  35. );
  36. [call_as(GetReferencedRowset)]
  37. HRESULT RemoteGetReferencedRowset(
  38. [in] DBORDINAL iOrdinal,
  39. [in] REFIID riid,
  40. [out, iid_is(riid)] IUnknown ** ppReferencedRowset,
  41. [out] IErrorInfo ** ppErrorInfoRem
  42. );
  43. [local]
  44. HRESULT GetSpecification(
  45. [in] REFIID riid,
  46. [out, iid_is(riid)] IUnknown ** ppSpecification
  47. );
  48. [call_as(GetSpecification)]
  49. HRESULT RemoteGetSpecification(
  50. [in] REFIID riid,
  51. [out, iid_is(riid)] IUnknown ** ppSpecification,
  52. [out] IErrorInfo ** ppErrorInfoRem
  53. );
  54. }