mirror of https://github.com/UMSKT/xpmgr.git
28 lines
522 B
Plaintext
28 lines
522 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// File: rowinf.idl
|
|
//
|
|
// Copyright: Copyright (c) Microsoft Corporation
|
|
//
|
|
// Contents: OLE DB interface definition
|
|
//
|
|
// Comments:
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "idlmulti.h"
|
|
//
|
|
|
|
REMOTED_INTERFACE(0c733ac1-2a1c-11ce-ade5-00aa0044773d)
|
|
|
|
|
|
interface IRowInfo : IUnknown {
|
|
|
|
[local]
|
|
HRESULT GetParentRow(
|
|
[in] REFIID riid,
|
|
[out] IUnknown ** ppRow
|
|
);
|
|
|
|
}
|
|
|