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

uiautomationcore: Add UiaEventRemoveWindow stub.

Signed-off-by: Connor McAdams <cmcadams@codeweavers.com>
This commit is contained in:
Connor McAdams 2022-10-30 14:39:57 -04:00 committed by Alexandre Julliard
parent 9ea53ec2f6
commit 41736eb554
3 changed files with 11 additions and 1 deletions

View file

@ -3031,3 +3031,12 @@ HRESULT WINAPI UiaEventAddWindow(HUIAEVENT huiaevent, HWND hwnd)
FIXME("(%p, %p): stub\n", huiaevent, hwnd);
return E_NOTIMPL;
}
/***********************************************************************
* UiaEventRemoveWindow (uiautomationcore.@)
*/
HRESULT WINAPI UiaEventRemoveWindow(HUIAEVENT huiaevent, HWND hwnd)
{
FIXME("(%p, %p): stub\n", huiaevent, hwnd);
return E_NOTIMPL;
}

View file

@ -58,7 +58,7 @@
#@ stub UiaDisconnectAllProviders
@ stdcall UiaDisconnectProvider(ptr)
@ stdcall UiaEventAddWindow(ptr long)
@ stub UiaEventRemoveWindow
@ stdcall UiaEventRemoveWindow(ptr long)
@ stdcall UiaFind(ptr ptr ptr ptr ptr ptr)
@ stub UiaGetErrorDescription
@ stub UiaGetPatternProvider

View file

@ -420,6 +420,7 @@ HRESULT WINAPI UiaFind(HUIANODE huianode, struct UiaFindParams *find_params, str
SAFEARRAY **out_offsets, SAFEARRAY **out_tree_structs);
HRESULT WINAPI UiaRemoveEvent(HUIAEVENT huiaevent);
HRESULT WINAPI UiaEventAddWindow(HUIAEVENT huiaevent, HWND hwnd);
HRESULT WINAPI UiaEventRemoveWindow(HUIAEVENT huiaevent, HWND hwnd);
#ifdef __cplusplus
}