msado15: Implement Dispatch functions in Field.

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:
Alistair Leslie-Hughes 2021-02-26 19:02:24 +11:00 committed by Alexandre Julliard
parent 9108ef5cfc
commit 5650d2b8f1
3 changed files with 38 additions and 8 deletions

View File

@ -181,6 +181,7 @@ static ITypeInfo *typeinfos[LAST_tid];
static REFIID tid_ids[] = {
&IID__Command,
&IID__Connection,
&IID_Field,
&IID__Stream,
};

View File

@ -45,6 +45,7 @@ static inline WCHAR *strdupW( const WCHAR *src )
typedef enum tid_t {
Command_tid,
Connection_tid,
Field_tid,
Stream_tid,
LAST_tid
} tid_t;

View File

@ -126,29 +126,57 @@ static HRESULT WINAPI field_QueryInterface( Field *iface, REFIID riid, void **ob
static HRESULT WINAPI field_GetTypeInfoCount( Field *iface, UINT *count )
{
FIXME( "%p, %p\n", iface, count );
return E_NOTIMPL;
struct field *field = impl_from_Field( iface );
TRACE( "%p, %p\n", field, count );
*count = 1;
return S_OK;
}
static HRESULT WINAPI field_GetTypeInfo( Field *iface, UINT index, LCID lcid, ITypeInfo **info )
{
FIXME( "%p, %u, %u, %p\n", iface, index, lcid, info );
return E_NOTIMPL;
struct field *field = impl_from_Field( iface );
TRACE( "%p, %u, %u, %p\n", field, index, lcid, info );
return get_typeinfo(Field_tid, info);
}
static HRESULT WINAPI field_GetIDsOfNames( Field *iface, REFIID riid, LPOLESTR *names, UINT count,
LCID lcid, DISPID *dispid )
{
FIXME( "%p, %s, %p, %u, %u, %p\n", iface, debugstr_guid(riid), names, count, lcid, dispid );
return E_NOTIMPL;
struct field *field = impl_from_Field( iface );
HRESULT hr;
ITypeInfo *typeinfo;
TRACE( "%p, %s, %p, %u, %u, %p\n", field, debugstr_guid(riid), names, count, lcid, dispid );
hr = get_typeinfo(Field_tid, &typeinfo);
if(SUCCEEDED(hr))
{
hr = ITypeInfo_GetIDsOfNames(typeinfo, names, count, dispid);
ITypeInfo_Release(typeinfo);
}
return hr;
}
static HRESULT WINAPI field_Invoke( Field *iface, DISPID member, REFIID riid, LCID lcid, WORD flags,
DISPPARAMS *params, VARIANT *result, EXCEPINFO *excep_info, UINT *arg_err )
{
FIXME( "%p, %d, %s, %d, %d, %p, %p, %p, %p\n", iface, member, debugstr_guid(riid), lcid, flags, params,
struct field *field = impl_from_Field( iface );
HRESULT hr;
ITypeInfo *typeinfo;
TRACE( "%p, %d, %s, %d, %d, %p, %p, %p, %p\n", field, member, debugstr_guid(riid), lcid, flags, params,
result, excep_info, arg_err );
return E_NOTIMPL;
hr = get_typeinfo(Field_tid, &typeinfo);
if(SUCCEEDED(hr))
{
hr = ITypeInfo_Invoke(typeinfo, &field->Field_iface, member, flags, params,
result, excep_info, arg_err);
ITypeInfo_Release(typeinfo);
}
return hr;
}
static HRESULT WINAPI field_get_Properties( Field *iface, Properties **obj )