/******************************************************** * * * Copyright (C) Microsoft. All rights reserved. * * * ********************************************************/ //----------------------------------------------------------------------------- // File: chprst.idl // // Contents: OLE DB interface definition // // Comments: // //----------------------------------------------------------------------------- cpp_quote("#include ") #pragma region Desktop Family cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)") #include "idlmulti.h" // REMOTED_INTERFACE(0c733a93-2a1c-11ce-ade5-00aa0044773d) interface IChapteredRowset : IUnknown { [local] HRESULT AddRefChapter( [in] HCHAPTER hChapter, [out, annotation("_Out_opt_")] DBREFCOUNT * pcRefCount ); [call_as(AddRefChapter)] HRESULT RemoteAddRefChapter( [in] HCHAPTER hChapter, [out] DBREFCOUNT * pcRefCount, [out] IErrorInfo ** ppErrorInfoRem ); [local] HRESULT ReleaseChapter( [in] HCHAPTER hChapter, [out, annotation("_Out_opt_")] DBREFCOUNT * pcRefCount ); [call_as(ReleaseChapter)] HRESULT RemoteReleaseChapter( [in] HCHAPTER hChapter, [out] DBREFCOUNT * pcRefCount, [out] IErrorInfo ** ppErrorInfoRem ); } cpp_quote("#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */") #pragma endregion