1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

uiautomationcore: Add UiaHasServerSideProvider stub.

Signed-off-by: Connor McAdams <cmcadams@codeweavers.com>
This commit is contained in:
Connor McAdams 2023-07-07 09:15:22 -04:00 committed by Alexandre Julliard
parent cf5e073d14
commit 12b2d34976
3 changed files with 11 additions and 1 deletions

View file

@ -2616,6 +2616,15 @@ HRESULT WINAPI UiaGetRootNode(HUIANODE *huianode)
return UiaNodeFromHandle(GetDesktopWindow(), huianode);
}
/***********************************************************************
* UiaHasServerSideProvider (uiautomationcore.@)
*/
BOOL WINAPI UiaHasServerSideProvider(HWND hwnd)
{
FIXME("(%p): stub\n", hwnd);
return FALSE;
}
static HRESULT get_focused_uia_node(HUIANODE in_node, HUIANODE *out_node)
{
struct uia_node *node = unsafe_impl_from_IWineUiaNode((IWineUiaNode *)in_node);

View file

@ -71,7 +71,7 @@
@ stub UiaHPatternObjectFromVariant
@ stub UiaHTextRangeFromVariant
@ stdcall UiaHUiaNodeFromVariant(ptr ptr)
@ stub UiaHasServerSideProvider
@ stdcall UiaHasServerSideProvider(long)
@ stdcall UiaHostProviderFromHwnd(long ptr)
#@ stub UiaIAccessibleFromProvider
@ stdcall UiaLookupId(long ptr)

View file

@ -558,6 +558,7 @@ HRESULT WINAPI UiaAddEvent(HUIANODE huianode, EVENTID event_id, UiaEventCallback
HRESULT WINAPI UiaRemoveEvent(HUIAEVENT huiaevent);
HRESULT WINAPI UiaEventAddWindow(HUIAEVENT huiaevent, HWND hwnd);
HRESULT WINAPI UiaEventRemoveWindow(HUIAEVENT huiaevent, HWND hwnd);
BOOL WINAPI UiaHasServerSideProvider(HWND hwnd);
#ifdef __cplusplus
}