mirror of https://github.com/UMSKT/xpmgr.git
27 lines
554 B
Plaintext
27 lines
554 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// File: rstcridx.idl
|
|
//
|
|
// Copyright: Copyright (c) Microsoft Corporation
|
|
//
|
|
// Contents: OLE DB interface definition
|
|
//
|
|
// Comments:
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "idlmulti.h"
|
|
|
|
LOCAL_INTERFACE(0c733abd-2a1c-11ce-ade5-00aa0044773d)
|
|
|
|
|
|
interface IRowsetCurrentIndex : IRowsetIndex {
|
|
|
|
HRESULT GetIndex(
|
|
[out] DBID ** ppIndexID);
|
|
|
|
HRESULT SetIndex(
|
|
[in] DBID * pIndexID);
|
|
|
|
}
|
|
|