Commit 914472ab authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

oleaut32: Set parameter to NULL in GetMops stub.

parent 21846747
......@@ -6872,7 +6872,8 @@ static HRESULT WINAPI ITypeInfo_fnGetMops( ITypeInfo2 *iface, MEMBERID memid,
BSTR *pBstrMops)
{
ITypeInfoImpl *This = (ITypeInfoImpl *)iface;
FIXME("(%p) stub!\n", This);
FIXME("(%p %d) stub!\n", This, memid);
*pBstrMops = NULL;
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