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