uiautomationcore: Add UiaEventRemoveWindow stub.
Signed-off-by: Connor McAdams <cmcadams@codeweavers.com>
This commit is contained in:
parent
9ea53ec2f6
commit
41736eb554
3 changed files with 11 additions and 1 deletions
|
@ -3031,3 +3031,12 @@ HRESULT WINAPI UiaEventAddWindow(HUIAEVENT huiaevent, HWND hwnd)
|
||||||
FIXME("(%p, %p): stub\n", huiaevent, hwnd);
|
FIXME("(%p, %p): stub\n", huiaevent, hwnd);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* UiaEventRemoveWindow (uiautomationcore.@)
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI UiaEventRemoveWindow(HUIAEVENT huiaevent, HWND hwnd)
|
||||||
|
{
|
||||||
|
FIXME("(%p, %p): stub\n", huiaevent, hwnd);
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
#@ stub UiaDisconnectAllProviders
|
#@ stub UiaDisconnectAllProviders
|
||||||
@ stdcall UiaDisconnectProvider(ptr)
|
@ stdcall UiaDisconnectProvider(ptr)
|
||||||
@ stdcall UiaEventAddWindow(ptr long)
|
@ stdcall UiaEventAddWindow(ptr long)
|
||||||
@ stub UiaEventRemoveWindow
|
@ stdcall UiaEventRemoveWindow(ptr long)
|
||||||
@ stdcall UiaFind(ptr ptr ptr ptr ptr ptr)
|
@ stdcall UiaFind(ptr ptr ptr ptr ptr ptr)
|
||||||
@ stub UiaGetErrorDescription
|
@ stub UiaGetErrorDescription
|
||||||
@ stub UiaGetPatternProvider
|
@ stub UiaGetPatternProvider
|
||||||
|
|
|
@ -420,6 +420,7 @@ HRESULT WINAPI UiaFind(HUIANODE huianode, struct UiaFindParams *find_params, str
|
||||||
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);
|
HRESULT WINAPI UiaEventAddWindow(HUIAEVENT huiaevent, HWND hwnd);
|
||||||
|
HRESULT WINAPI UiaEventRemoveWindow(HUIAEVENT huiaevent, HWND hwnd);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue