Commit 554715ce authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ole2disp.dll16: Add a stub for SETERRORINFO.

parent 35e42ea4
......@@ -248,3 +248,12 @@ HRESULT WINAPI RegisterActiveObject16(
FIXME("(%p,%s,0x%08x,%p):stub\n",punk,debugstr_guid(rclsid),dwFlags,pdwRegister);
return E_NOTIMPL;
}
/******************************************************************************
* SetErrorInfo [OLE2DISP.110]
*/
HRESULT WINAPI SetErrorInfo16(ULONG dwReserved, IErrorInfo *perrinfo)
{
FIXME("stub: (%d, %p)\n", dwReserved, perrinfo);
return E_INVALIDARG;
}
......@@ -107,7 +107,7 @@
107 stub DOINVOKEMETHOD
108 stub VARIANTCHANGETYPEEX
109 stub SAFEARRAYPTROFINDEX
110 stub SETERRORINFO
110 pascal SetErrorInfo(long ptr) SetErrorInfo16
111 stub GETERRORINFO
112 stub CREATEERRORINFO
113 stub _IID_IERRORINFO
......
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