mirror of https://github.com/UMSKT/xpmgr.git
37 lines
798 B
Plaintext
37 lines
798 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// File: rstcei.idl
|
|
//
|
|
// Copyright: Copyright (c) Microsoft Corporation
|
|
//
|
|
// Contents:
|
|
//
|
|
// Comments:
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
import "oledb.idl";
|
|
|
|
#include "idlmulti.h"
|
|
//
|
|
|
|
LOCAL_INTERFACE(0c733a8f-2a1c-11ce-ade5-00aa0044773d)
|
|
|
|
interface IRowsetChangeExtInfo : IUnknown {
|
|
|
|
HRESULT GetOriginalRow(
|
|
[in] HCHAPTER hReserved,
|
|
[in] HROW hRow,
|
|
[out] HROW *phRowOriginal
|
|
);
|
|
|
|
HRESULT GetPendingColumns(
|
|
[in] HCHAPTER hReserved,
|
|
[in] HROW hRow,
|
|
[in] DBORDINAL cColumnOrdinals,
|
|
[in, size_is(cColumnOrdinals)] const DBORDINAL rgiOrdinals[],
|
|
[out, size_is(cColumnOrdinals)] DBPENDINGSTATUS rgColumnStatus[]
|
|
);
|
|
|
|
}
|
|
|