sesprp.idl
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- //-----------------------------------------------------------------------------
- // File: sesprp.idl
- //
- // Copyright: Copyright (c) Microsoft Corporation
- //
- // Contents: OLE DB interface definition
- //
- // Comments:
- //
- //-----------------------------------------------------------------------------
- #include "idlmulti.h"
- //
- REMOTED_INTERFACE(0c733a85-2a1c-11ce-ade5-00aa0044773d)
- interface ISessionProperties : IUnknown {
- [local]
- HRESULT GetProperties(
- [in] ULONG cPropertyIDSets,
- [in, size_is(cPropertyIDSets)] const DBPROPIDSET rgPropertyIDSets[],
- [in, out] ULONG * pcPropertySets,
- [out, size_is(,*pcPropertySets)] DBPROPSET ** prgPropertySets
- );
- [call_as(GetProperties)]
- HRESULT RemoteGetProperties(
- [in] ULONG cPropertyIDSets,
- [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets,
- [in, out] ULONG * pcPropertySets,
- [out, size_is(,*pcPropertySets)] DBPROPSET ** prgPropertySets,
- [out] IErrorInfo ** ppErrorInfoRem
- );
- [local]
- HRESULT SetProperties(
- [in] ULONG cPropertySets,
- [in, out, unique, size_is(cPropertySets)] DBPROPSET rgPropertySets[]
- );
- [call_as(SetProperties)]
- HRESULT RemoteSetProperties(
- [in] ULONG cPropertySets,
- [in, unique, size_is(cPropertySets)] DBPROPSET * rgPropertySets,
- [in] ULONG cTotalProps,
- [out, size_is(cTotalProps)] DBPROPSTATUS * rgPropStatus,
- [out] IErrorInfo ** ppErrorInfoRem
- );
- }