Commit da0878df authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Stub implementations for LresultFromObject and

AccessibleObjectFromWindow.
parent d00141aa
......@@ -35,3 +35,17 @@ HRESULT WINAPI CreateStdAccessibleObject( HWND hwnd, LONG idObject,
debugstr_guid( riidInterface ), ppvObject );
return E_NOTIMPL;
}
HRESULT WINAPI LresultFromObject( REFIID riid, WPARAM wParam, LPUNKNOWN pAcc )
{
FIXME("%s %d %p\n", debugstr_guid(riid), wParam, pAcc );
return E_NOTIMPL;
}
HRESULT WINAPI AccessibleObjectFromWindow( HWND hwnd, DWORD dwObjectID,
REFIID riid, void** ppvObject )
{
FIXME("%p %ld %s %p\n", hwnd, dwObjectID,
debugstr_guid( riid ), ppvObject );
return E_NOTIMPL;
}
@ stub AccessibleChildren
@ stub AccessibleObjectFromEvent
@ stub AccessibleObjectFromPoint
@ stub AccessibleObjectFromWindow
@ stdcall AccessibleObjectFromWindow(ptr long ptr ptr)
@ stdcall CreateStdAccessibleObject(ptr long ptr ptr)
@ stub CreateStdAccessibleProxyA
@ stub CreateStdAccessibleProxyW
......@@ -15,6 +15,6 @@
@ stub IID_IAccessible
@ stub IID_IAccessibleHandler
@ stub LIBID_Accessibility
@ stub LresultFromObject
@ stdcall LresultFromObject(ptr long ptr)
@ stub ObjectFromLresult
@ 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