>From 45931c16244ad245905dcc639afa112d996e577c Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Mon, 27 Jun 2011 22:26:30 +1000 Subject: [PATCH] Implement ICreateTypeInfo2 SetHelpStringContext To: wine-patches --- dlls/oleaut32/typelib2.c | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/dlls/oleaut32/typelib2.c b/dlls/oleaut32/typelib2.c index 5740ddd..b7d49f2 100644 --- a/dlls/oleaut32/typelib2.c +++ b/dlls/oleaut32/typelib2.c @@ -3072,8 +3072,13 @@ 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. */ { - FIXME("(%p,%d), stub!\n", iface, dwHelpStringContext); - return E_OUTOFMEMORY; + ICreateTypeInfo2Impl *This = impl_from_ICreateTypeInfo2(iface); + + TRACE("(%p,%d), stub!\n", iface, dwHelpStringContext); + + This->typelib->typelib_header.helpcontext = dwHelpStringContext; + + return S_OK; } /****************************************************************************** -- 1.7.4.1