Commit 1a74194f authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

oleaut32: Implement ICreateTypeInfo2 SetHelpStringContext.

parent d911374b
......@@ -3070,10 +3070,15 @@ static HRESULT WINAPI ICreateTypeInfo2_fnSetImplTypeCustData(
*/
static HRESULT WINAPI ICreateTypeInfo2_fnSetHelpStringContext(
ICreateTypeInfo2* iface, /* [I] The typeinfo on which to set the help string context. */
ULONG dwHelpStringContext) /* [I] The help string context. */
ULONG helpcontext) /* [I] The help string context. */
{
FIXME("(%p,%d), stub!\n", iface, dwHelpStringContext);
return E_OUTOFMEMORY;
ICreateTypeInfo2Impl *This = impl_from_ICreateTypeInfo2(iface);
TRACE("(%p, %d)\n", iface, helpcontext);
This->typelib->typelib_header.helpcontext = helpcontext;
return S_OK;
}
/******************************************************************************
......
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