Commit b2f6b44b authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

oleacc: Add ObjectFromLresult stub.

parent 44da9ba3
...@@ -40,6 +40,12 @@ HRESULT WINAPI CreateStdAccessibleObject( HWND hwnd, LONG idObject, ...@@ -40,6 +40,12 @@ HRESULT WINAPI CreateStdAccessibleObject( HWND hwnd, LONG idObject,
return E_NOTIMPL; return E_NOTIMPL;
} }
HRESULT WINAPI ObjectFromLresult( LRESULT result, REFIID riid, WPARAM wParam, void **ppObject )
{
FIXME("%ld %s %ld %p\n", result, debugstr_guid(riid), wParam, ppObject );
return E_NOTIMPL;
}
LRESULT WINAPI LresultFromObject( REFIID riid, WPARAM wParam, LPUNKNOWN pAcc ) LRESULT WINAPI LresultFromObject( REFIID riid, WPARAM wParam, LPUNKNOWN pAcc )
{ {
FIXME("%s %ld %p\n", debugstr_guid(riid), wParam, pAcc ); FIXME("%s %ld %p\n", debugstr_guid(riid), wParam, pAcc );
......
...@@ -16,5 +16,5 @@ ...@@ -16,5 +16,5 @@
@ stub IID_IAccessibleHandler @ stub IID_IAccessibleHandler
@ stub LIBID_Accessibility @ stub LIBID_Accessibility
@ stdcall LresultFromObject(ptr long ptr) @ stdcall LresultFromObject(ptr long ptr)
@ stub ObjectFromLresult @ stdcall ObjectFromLresult(long ptr long ptr)
@ stub WindowFromAccessibleObject @ stub WindowFromAccessibleObject
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