msado15: Implement Dispatch functions in ADORecordsetConstruction.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d5113e5174
commit
6ed601ccba
|
@ -179,6 +179,7 @@ static ITypeLib *typelib;
|
|||
static ITypeInfo *typeinfos[LAST_tid];
|
||||
|
||||
static REFIID tid_ids[] = {
|
||||
&IID_ADORecordsetConstruction,
|
||||
&IID__Command,
|
||||
&IID__Connection,
|
||||
&IID_Field,
|
||||
|
|
|
@ -43,6 +43,7 @@ static inline WCHAR *strdupW( const WCHAR *src )
|
|||
}
|
||||
|
||||
typedef enum tid_t {
|
||||
ADORecordsetConstruction_tid,
|
||||
Command_tid,
|
||||
Connection_tid,
|
||||
Field_tid,
|
||||
|
|
|
@ -1768,16 +1768,27 @@ static HRESULT WINAPI rsconstruction_GetTypeInfo(ADORecordsetConstruction *iface
|
|||
LCID lcid, ITypeInfo **ppTInfo)
|
||||
{
|
||||
struct recordset *recordset = impl_from_ADORecordsetConstruction( iface );
|
||||
FIXME( "%p %u %u %p\n", recordset, iTInfo, lcid, ppTInfo );
|
||||
return E_NOTIMPL;
|
||||
TRACE( "%p %u %u %p\n", recordset, iTInfo, lcid, ppTInfo );
|
||||
return get_typeinfo(ADORecordsetConstruction_tid, ppTInfo);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI rsconstruction_GetIDsOfNames(ADORecordsetConstruction *iface, REFIID riid,
|
||||
LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
|
||||
{
|
||||
struct recordset *recordset = impl_from_ADORecordsetConstruction( iface );
|
||||
FIXME( "%p %s %p %u %u %p\n", recordset, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId );
|
||||
return E_NOTIMPL;
|
||||
HRESULT hr;
|
||||
ITypeInfo *typeinfo;
|
||||
|
||||
TRACE( "%p %s %p %u %u %p\n", recordset, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId );
|
||||
|
||||
hr = get_typeinfo(ADORecordsetConstruction_tid, &typeinfo);
|
||||
if(SUCCEEDED(hr))
|
||||
{
|
||||
hr = ITypeInfo_GetIDsOfNames(typeinfo, rgszNames, cNames, rgDispId);
|
||||
ITypeInfo_Release(typeinfo);
|
||||
}
|
||||
|
||||
return hr;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI rsconstruction_Invoke(ADORecordsetConstruction *iface, DISPID dispIdMember,
|
||||
|
@ -1785,9 +1796,21 @@ static HRESULT WINAPI rsconstruction_Invoke(ADORecordsetConstruction *iface, DIS
|
|||
EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
||||
{
|
||||
struct recordset *recordset = impl_from_ADORecordsetConstruction( iface );
|
||||
FIXME( "%p %d %s %d %d %p %p %p %p\n", recordset, dispIdMember, debugstr_guid(riid),
|
||||
HRESULT hr;
|
||||
ITypeInfo *typeinfo;
|
||||
|
||||
TRACE( "%p %d %s %d %d %p %p %p %p\n", recordset, dispIdMember, debugstr_guid(riid),
|
||||
lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr );
|
||||
return E_NOTIMPL;
|
||||
|
||||
hr = get_typeinfo(ADORecordsetConstruction_tid, &typeinfo);
|
||||
if(SUCCEEDED(hr))
|
||||
{
|
||||
hr = ITypeInfo_Invoke(typeinfo, &recordset->ADORecordsetConstruction_iface, dispIdMember, wFlags,
|
||||
pDispParams, pVarResult, pExcepInfo, puArgErr);
|
||||
ITypeInfo_Release(typeinfo);
|
||||
}
|
||||
|
||||
return hr;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI rsconstruction_get_Rowset(ADORecordsetConstruction *iface, IUnknown **row_set)
|
||||
|
|
Loading…
Reference in New Issue