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

模拟服务器

开发平台:

C/C++

  1. //-----------------------------------------------------------------------------
  2. // File: sesprp.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(0c733a85-2a1c-11ce-ade5-00aa0044773d)
  14. interface ISessionProperties : IUnknown {
  15. [local]
  16. HRESULT GetProperties(
  17. [in] 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 SetProperties(
  32. [in] ULONG cPropertySets,
  33. [in, out, unique, size_is(cPropertySets)] DBPROPSET rgPropertySets[]
  34. );
  35. [call_as(SetProperties)]
  36. HRESULT RemoteSetProperties(
  37. [in] ULONG cPropertySets,
  38. [in, unique, size_is(cPropertySets)] DBPROPSET * rgPropertySets,
  39. [in] ULONG cTotalProps,
  40. [out, size_is(cTotalProps)] DBPROPSTATUS * rgPropStatus,
  41. [out] IErrorInfo ** ppErrorInfoRem
  42. );
  43. }