Stub implementations for LresultFromObject and
AccessibleObjectFromWindow.
This commit is contained in:
parent
d00141aae8
commit
da0878df14
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
@ 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
|
||||
|
|
Loading…
Reference in New Issue