mirror of https://github.com/UMSKT/xpmgr.git
120 lines
3.3 KiB
Plaintext
120 lines
3.3 KiB
Plaintext
//-----------------------------------------------------------------------------
|
|
// File: colrst.idl
|
|
//
|
|
// Copyright: Copyright (c) Microsoft Corporation
|
|
//
|
|
// Contents: OLE DB interface definition
|
|
//
|
|
// Comments:
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "idlmulti.h"
|
|
//
|
|
|
|
REMOTED_INTERFACE(0c733a10-2a1c-11ce-ade5-00aa0044773d)
|
|
|
|
|
|
interface IColumnsRowset : IUnknown {
|
|
|
|
#ifdef _WIN64 //Use casting by ULONG in attribute size_is under 64-bit environment.
|
|
|
|
[local]
|
|
HRESULT GetAvailableColumns(
|
|
[in, out, annotation("__out")] DBORDINAL * pcOptColumns,
|
|
[out, size_is(,(ULONG)*pcOptColumns), annotation("__deref_out_ecount(*pcOptColumns)")] DBID ** prgOptColumns
|
|
);
|
|
|
|
#ifndef NO_REMOTE
|
|
|
|
[call_as(GetAvailableColumns)]
|
|
HRESULT RemoteGetAvailableColumns(
|
|
[in, out] DBORDINAL * pcOptColumns,
|
|
[out, size_is(,(ULONG)*pcOptColumns)] DBID ** prgOptColumns,
|
|
[out] IErrorInfo ** ppErrorInfoRem
|
|
);
|
|
|
|
#endif
|
|
|
|
[local]
|
|
HRESULT GetColumnsRowset(
|
|
[in, annotation("__in_opt")] IUnknown * pUnkOuter,
|
|
[in] DBORDINAL cOptColumns,
|
|
[in, size_is((ULONG)cOptColumns), annotation("__in_ecount(cOptColumns)")] const DBID rgOptColumns[],
|
|
[in] REFIID riid,
|
|
[in] ULONG cPropertySets,
|
|
[in, out, size_is((ULONG)cPropertySets), annotation("__inout_ecount_opt(cPropertySets)")] DBPROPSET rgPropertySets[],
|
|
[out, iid_is(riid), annotation("__deref_out")] IUnknown ** ppColRowset
|
|
);
|
|
|
|
#ifndef NO_REMOTE
|
|
|
|
[call_as(GetColumnsRowset)]
|
|
HRESULT RemoteGetColumnsRowset(
|
|
[in] IUnknown * pUnkOuter,
|
|
[in] DBORDINAL cOptColumns,
|
|
[in, unique, size_is((ULONG)cOptColumns)] const DBID * rgOptColumns,
|
|
[in] REFIID riid,
|
|
[in] ULONG cPropertySets,
|
|
[in, unique, size_is((ULONG)cPropertySets)] DBPROPSET * rgPropertySets,
|
|
[out, iid_is(riid)] IUnknown ** ppColRowset,
|
|
[in] ULONG cTotalProps,
|
|
[out, size_is((ULONG)cTotalProps)] DBPROPSTATUS * rgPropStatus,
|
|
[out] IErrorInfo ** ppErrorInfoRem
|
|
);
|
|
|
|
#endif
|
|
|
|
#else //No casting by ULONG for 32-bit.
|
|
|
|
[local]
|
|
HRESULT GetAvailableColumns(
|
|
[in, out, annotation("__out")] DBORDINAL * pcOptColumns,
|
|
[out, size_is(,*pcOptColumns), annotation("__deref_out_ecount(*pcOptColumns)")] DBID ** prgOptColumns
|
|
);
|
|
|
|
#ifndef NO_REMOTE
|
|
|
|
[call_as(GetAvailableColumns)]
|
|
HRESULT RemoteGetAvailableColumns(
|
|
[in, out] DBORDINAL * pcOptColumns,
|
|
[out, size_is(,*pcOptColumns)] DBID ** prgOptColumns,
|
|
[out] IErrorInfo ** ppErrorInfoRem
|
|
);
|
|
|
|
#endif
|
|
|
|
[local]
|
|
HRESULT GetColumnsRowset(
|
|
[in, annotation("__in_opt")] IUnknown * pUnkOuter,
|
|
[in] DBORDINAL cOptColumns,
|
|
[in, size_is(cOptColumns), annotation("__in_ecount(cOptColumns)")] const DBID rgOptColumns[],
|
|
[in] REFIID riid,
|
|
[in] ULONG cPropertySets,
|
|
[in, out, size_is(cPropertySets), annotation("__inout_ecount_opt(cPropertySets)")] DBPROPSET rgPropertySets[],
|
|
[out, iid_is(riid), annotation("__deref_out")] IUnknown ** ppColRowset
|
|
);
|
|
|
|
#ifndef NO_REMOTE
|
|
|
|
[call_as(GetColumnsRowset)]
|
|
HRESULT RemoteGetColumnsRowset(
|
|
[in] IUnknown * pUnkOuter,
|
|
[in] DBORDINAL cOptColumns,
|
|
[in, unique, size_is(cOptColumns)] const DBID * rgOptColumns,
|
|
[in] REFIID riid,
|
|
[in] ULONG cPropertySets,
|
|
[in, unique, size_is(cPropertySets)] DBPROPSET * rgPropertySets,
|
|
[out, iid_is(riid)] IUnknown ** ppColRowset,
|
|
[in] ULONG cTotalProps,
|
|
[out, size_is(cTotalProps)] DBPROPSTATUS * rgPropStatus,
|
|
[out] IErrorInfo ** ppErrorInfoRem
|
|
);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|