/******************************************************** * * * Copyright (C) Microsoft. All rights reserved. * * * ********************************************************/ //----------------------------------------------------------------------------- // File: vwchp.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(0c733a98-2a1c-11ce-ade5-00aa0044773d) interface IViewChapter : IUnknown { [local] HRESULT GetSpecification( [in, annotation("_In_")] REFIID riid, [out, iid_is(riid), annotation("_Outptr_")] IUnknown ** ppRowset ); [call_as(GetSpecification)] HRESULT RemoteGetSpecification( [in] REFIID riid, [out, iid_is(riid)] IUnknown ** ppRowset, [out] IErrorInfo ** ppErrorInfoRem ); [local] HRESULT OpenViewChapter( [in] HCHAPTER hSource, [out, annotation("_Out_opt_")] HCHAPTER * phViewChapter ); [call_as(OpenViewChapter)] HRESULT RemoteOpenViewChapter( [in] HCHAPTER hSource, [out] HCHAPTER * phViewChapter, [out] IErrorInfo ** ppErrorInfoRem ); } cpp_quote("#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */") #pragma endregion