Skip to content
Snippets Groups Projects
Commit 554715ce authored by Austin English's avatar Austin English Committed by Alexandre Julliard
Browse files

ole2disp.dll16: Add a stub for SETERRORINFO.

parent 35e42ea4
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment