include: Add opnrst.idl.

oldstable
Huw Davies 2009-07-22 14:25:27 +01:00 committed by Alexandre Julliard
parent 659070ec3a
commit 3eb5e861d8
4 changed files with 50 additions and 0 deletions

View File

@ -364,6 +364,7 @@ SRCDIR_INCLUDES = \
oleauto.h \
olectl.h \
oledlg.h \
opnrst.idl \
pdh.h \
pdhmsg.h \
pktdef.h \

View File

@ -29,3 +29,4 @@ typedef ULONG DBBYTEOFFSET;
#include "dbcses.idl"
#include "dbprop.idl"
#include "dbinit.idl"
#include "opnrst.idl"

47
include/opnrst.idl 100644
View File

@ -0,0 +1,47 @@
/*
* Copyright (C) 2009 Huw Davies
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
[
object,
uuid(0c733a69-2a1c-11ce-ade5-00aa0044773d),
pointer_default(unique)
]
interface IOpenRowset : IUnknown
{
[local]
HRESULT OpenRowset([in] IUnknown *pUnkOuter,
[in, unique] DBID *pTableID,
[in, unique] DBID *pIndexID,
[in] REFIID riid,
[in] ULONG cPropertySets,
[in, out, size_is(cPropertySets)] DBPROPSET rgPropertySets[],
[out, iid_is(riid)] IUnknown **ppRowset);
[call_as(OpenRowset)]
HRESULT RemoteOpenRowset([in] IUnknown *pUnkOuter,
[in, unique] DBID *pTableID,
[in, unique] DBID *pIndexID,
[in] REFIID riid,
[in] ULONG cPropertySets,
[in, unique, size_is(cPropertySets)] DBPROPSET *rgPropertySets,
[in, out, unique, iid_is(riid)] IUnknown **ppRowset,
[in] ULONG cTotalProps,
[out, size_is(cTotalProps)] DBPROPSTATUS *rgPropStatus,
[out] IErrorInfo **ppErrorInfoRem);
}

View File

@ -116,6 +116,7 @@ my %private_idl_headers = (
"dbs.idl" => 1,
"devenum.idl" => 1,
"dyngraph.idl" => 1,
"opnrst.idl" => 1,
"vmrender.idl" => 1,
"wine/wined3d.idl" => 1,
"wine/winedxgi.idl" => 1,