include: Add interface IGetDataSource.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alistair Leslie-Hughes 2020-10-12 18:33:40 +11:00 committed by Alexandre Julliard
parent b9178da586
commit da8079b3da
4 changed files with 49 additions and 0 deletions

View File

@ -1576,3 +1576,16 @@ HRESULT __RPC_STUB IColumnsInfo_MapColumnIDs_Stub(IColumnsInfo* This, DBORDINAL
FIXME("(%p)->(%lu %p %p %p): stub\n", This, column_ids, dbids, columns, error);
return E_NOTIMPL;
}
HRESULT CALLBACK IGetDataSource_GetDataSource_Proxy(IGetDataSource* This, REFIID riid, IUnknown **datasource)
{
FIXME("(%p)->(%s %p): stub\n", This, debugstr_guid(riid), datasource);
return E_NOTIMPL;
}
HRESULT __RPC_STUB IGetDataSource_GetDataSource_Stub(IGetDataSource* This, REFIID riid, IUnknown **datasource,
IErrorInfo **error)
{
FIXME("(%p)->(%s %p %p): stub\n", This, debugstr_guid(riid), datasource, error);
return E_NOTIMPL;
}

View File

@ -307,6 +307,7 @@ SOURCES = \
gdiplusmetaheader.h \
gdipluspixelformats.h \
gdiplustypes.h \
getdts.idl \
guiddef.h \
hidusage.h \
highlevelmonitorconfigurationapi.h \

34
include/getdts.idl Normal file
View File

@ -0,0 +1,34 @@
/*
* Copyright (C) 2020 Alistair Leslie-Hughes
*
* 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
*/
#if 0
#pragma makedep install
#endif
[
object,
uuid(0c733a75-2a1c-11ce-ade5-00aa0044773d),
pointer_default(unique)
]
interface IGetDataSource : IUnknown
{
[local]
HRESULT GetDataSource([in] REFIID riid, [out, iid_is(riid)] IUnknown **datasource);
[call_as(GetDataSource)]
HRESULT RemoteGetDataSource([in] REFIID riid, [out, iid_is(riid)] IUnknown **datasource, [out] IErrorInfo **error);
}

View File

@ -69,6 +69,7 @@ typedef DWORD_PTR DBHASHVALUE;
#include "binres.idl"
#include "crtrow.idl"
#include "errrec.idl"
#include "getdts.idl"
cpp_quote("#include <accctrl.h>")