1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //-----------------------------------------------------------------------------
- // File: vwchp.idl
- //
- // Copyright: Copyright (c) Microsoft Corporation
- //
- // Contents: OLE DB interface definition
- //
- // Comments:
- //
- //-----------------------------------------------------------------------------
- #include "idlmulti.h"
- //
- REMOTED_INTERFACE(0c733a98-2a1c-11ce-ade5-00aa0044773d)
- interface IViewChapter : IUnknown {
- [local]
- HRESULT GetSpecification(
- [in] REFIID riid,
- [out, iid_is(riid)] 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] HCHAPTER * phViewChapter
- );
- [call_as(OpenViewChapter)]
- HRESULT RemoteOpenViewChapter(
- [in] HCHAPTER hSource,
- [out] HCHAPTER * phViewChapter,
- [out] IErrorInfo ** ppErrorInfoRem
- );
- }
|