uiautomationcore: Add UiaHasServerSideProvider stub.
Signed-off-by: Connor McAdams <cmcadams@codeweavers.com>
This commit is contained in:
parent
cf5e073d14
commit
12b2d34976
3 changed files with 11 additions and 1 deletions
|
@ -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);
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue