1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-03 08:19:41 +00:00

uiautomationcore: Add UiaRemoveEvent stub.

Signed-off-by: Connor McAdams <cmcadams@codeweavers.com>
This commit is contained in:
Connor McAdams 2022-10-30 14:33:46 -04:00 committed by Alexandre Julliard
parent b58c88d14d
commit 922706bd1e
3 changed files with 11 additions and 1 deletions

View File

@ -3013,3 +3013,12 @@ exit:
return hr;
}
/***********************************************************************
* UiaRemoveEvent (uiautomationcore.@)
*/
HRESULT WINAPI UiaRemoveEvent(HUIAEVENT huiaevent)
{
FIXME("(%p): stub\n", huiaevent);
return E_NOTIMPL;
}

View File

@ -92,7 +92,7 @@
@ stub UiaRaiseStructureChangedEvent
#@ stub UiaRaiseTextEditTextChangedEvent
@ stdcall UiaRegisterProviderCallback(ptr)
@ stub UiaRemoveEvent
@ stdcall UiaRemoveEvent(ptr)
@ stdcall UiaReturnRawElementProvider(long long long ptr)
@ stub UiaSetFocus
@ stub UiaTextRangeRelease

View File

@ -418,6 +418,7 @@ HRESULT WINAPI UiaNavigate(HUIANODE huianode, enum NavigateDirection dir, struct
struct UiaCacheRequest *cache_req, SAFEARRAY **out_req, BSTR *tree_struct);
HRESULT WINAPI UiaFind(HUIANODE huianode, struct UiaFindParams *find_params, struct UiaCacheRequest *cache_req, SAFEARRAY **out_req,
SAFEARRAY **out_offsets, SAFEARRAY **out_tree_structs);
HRESULT WINAPI UiaRemoveEvent(HUIAEVENT huiaevent);
#ifdef __cplusplus
}