Commit 9ea53ec2 authored by Connor McAdams's avatar Connor McAdams Committed by Alexandre Julliard

uiautomationcore: Add UiaEventAddWindow stub.

parent 922706bd
...@@ -3022,3 +3022,12 @@ HRESULT WINAPI UiaRemoveEvent(HUIAEVENT huiaevent) ...@@ -3022,3 +3022,12 @@ HRESULT WINAPI UiaRemoveEvent(HUIAEVENT huiaevent)
FIXME("(%p): stub\n", huiaevent); FIXME("(%p): stub\n", huiaevent);
return E_NOTIMPL; return E_NOTIMPL;
} }
/***********************************************************************
* UiaEventAddWindow (uiautomationcore.@)
*/
HRESULT WINAPI UiaEventAddWindow(HUIAEVENT huiaevent, HWND hwnd)
{
FIXME("(%p, %p): stub\n", huiaevent, hwnd);
return E_NOTIMPL;
}
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
@ stdcall UiaClientsAreListening() @ stdcall UiaClientsAreListening()
#@ stub UiaDisconnectAllProviders #@ stub UiaDisconnectAllProviders
@ stdcall UiaDisconnectProvider(ptr) @ stdcall UiaDisconnectProvider(ptr)
@ stub UiaEventAddWindow @ stdcall UiaEventAddWindow(ptr long)
@ stub UiaEventRemoveWindow @ stub UiaEventRemoveWindow
@ stdcall UiaFind(ptr ptr ptr ptr ptr ptr) @ stdcall UiaFind(ptr ptr ptr ptr ptr ptr)
@ stub UiaGetErrorDescription @ stub UiaGetErrorDescription
......
...@@ -419,6 +419,7 @@ HRESULT WINAPI UiaNavigate(HUIANODE huianode, enum NavigateDirection dir, struct ...@@ -419,6 +419,7 @@ HRESULT WINAPI UiaNavigate(HUIANODE huianode, enum NavigateDirection dir, struct
HRESULT WINAPI UiaFind(HUIANODE huianode, struct UiaFindParams *find_params, struct UiaCacheRequest *cache_req, SAFEARRAY **out_req, HRESULT WINAPI UiaFind(HUIANODE huianode, struct UiaFindParams *find_params, struct UiaCacheRequest *cache_req, SAFEARRAY **out_req,
SAFEARRAY **out_offsets, SAFEARRAY **out_tree_structs); SAFEARRAY **out_offsets, SAFEARRAY **out_tree_structs);
HRESULT WINAPI UiaRemoveEvent(HUIAEVENT huiaevent); HRESULT WINAPI UiaRemoveEvent(HUIAEVENT huiaevent);
HRESULT WINAPI UiaEventAddWindow(HUIAEVENT huiaevent, HWND hwnd);
#ifdef __cplusplus #ifdef __cplusplus
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment