Commit b562484d authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

dbgeng: Add IDebugSymbols3 definition.

parent a346e44c
......@@ -872,7 +872,16 @@ static HRESULT STDMETHODCALLTYPE debugsymbols_GetTypeName(IDebugSymbols *iface,
return E_NOTIMPL;
}
static HRESULT STDMETHODCALLTYPE debugsymbols_GetTypeId(IDebugSymbols *iface, ULONG64 base, ULONG type_id, ULONG *size)
static HRESULT STDMETHODCALLTYPE debugsymbols_GetTypeId(IDebugSymbols *iface, ULONG64 base, const char *name,
ULONG *type_id)
{
FIXME("%p, %s, %s, %p stub.\n", iface, wine_dbgstr_longlong(base), debugstr_a(name), type_id);
return E_NOTIMPL;
}
static HRESULT STDMETHODCALLTYPE debugsymbols_GetTypeSize(IDebugSymbols *iface, ULONG64 base, ULONG type_id,
ULONG *size)
{
FIXME("%p, %s, %u, %p stub.\n", iface, wine_dbgstr_longlong(base), type_id, size);
......@@ -1140,6 +1149,7 @@ static const IDebugSymbolsVtbl debugsymbolsvtbl =
debugsymbols_GetSymbolModule,
debugsymbols_GetTypeName,
debugsymbols_GetTypeId,
debugsymbols_GetTypeSize,
debugsymbols_GetFieldOffset,
debugsymbols_GetSymbolTypeId,
debugsymbols_GetOffsetTypeId,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment