ole2disp.dll16: Add a stub for SETERRORINFO.
This commit is contained in:
parent
35e42ea40e
commit
554715ce72
|
@ -248,3 +248,12 @@ HRESULT WINAPI RegisterActiveObject16(
|
||||||
FIXME("(%p,%s,0x%08x,%p):stub\n",punk,debugstr_guid(rclsid),dwFlags,pdwRegister);
|
FIXME("(%p,%s,0x%08x,%p):stub\n",punk,debugstr_guid(rclsid),dwFlags,pdwRegister);
|
||||||
return E_NOTIMPL;
|
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
|
107 stub DOINVOKEMETHOD
|
||||||
108 stub VARIANTCHANGETYPEEX
|
108 stub VARIANTCHANGETYPEEX
|
||||||
109 stub SAFEARRAYPTROFINDEX
|
109 stub SAFEARRAYPTROFINDEX
|
||||||
110 stub SETERRORINFO
|
110 pascal SetErrorInfo(long ptr) SetErrorInfo16
|
||||||
111 stub GETERRORINFO
|
111 stub GETERRORINFO
|
||||||
112 stub CREATEERRORINFO
|
112 stub CREATEERRORINFO
|
||||||
113 stub _IID_IERRORINFO
|
113 stub _IID_IERRORINFO
|
||||||
|
|
Loading…
Reference in New Issue