jscript: Implement ScriptTypeInfo_GetImplTypeFlags.

Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Gabriel Ivăncescu 2019-12-13 14:59:48 +02:00 committed by Alexandre Julliard
parent f6197e7454
commit d9a560b1ce
1 changed files with 6 additions and 2 deletions

View File

@ -891,9 +891,13 @@ static HRESULT WINAPI ScriptTypeInfo_GetImplTypeFlags(ITypeInfo *iface, UINT ind
{
ScriptTypeInfo *This = ScriptTypeInfo_from_ITypeInfo(iface);
FIXME("(%p)->(%u %p)\n", This, index, pImplTypeFlags);
TRACE("(%p)->(%u %p)\n", This, index, pImplTypeFlags);
return E_NOTIMPL;
if (!pImplTypeFlags) return E_INVALIDARG;
if (index != 0) return TYPE_E_ELEMENTNOTFOUND;
*pImplTypeFlags = 0;
return S_OK;
}
static HRESULT WINAPI ScriptTypeInfo_GetIDsOfNames(ITypeInfo *iface, LPOLESTR *rgszNames, UINT cNames,