uiautomationcore: Add UiaAddEvent stub.
Signed-off-by: Connor McAdams <cmcadams@codeweavers.com>
This commit is contained in:
parent
41736eb554
commit
c0360db561
3 changed files with 15 additions and 1 deletions
|
@ -3014,6 +3014,17 @@ exit:
|
|||
return hr;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* UiaAddEvent (uiautomationcore.@)
|
||||
*/
|
||||
HRESULT WINAPI UiaAddEvent(HUIANODE huianode, EVENTID event_id, UiaEventCallback *callback, enum TreeScope scope,
|
||||
PROPERTYID *prop_ids, int prop_ids_count, struct UiaCacheRequest *cache_req, HUIAEVENT *huiaevent)
|
||||
{
|
||||
FIXME("(%p, %d, %p, %#x, %p, %d, %p, %p)\n", huianode, event_id, callback, scope, prop_ids, prop_ids_count,
|
||||
cache_req, huiaevent);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* UiaRemoveEvent (uiautomationcore.@)
|
||||
*/
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
@ stub TransformPattern_Move
|
||||
@ stub TransformPattern_Resize
|
||||
@ stub TransformPattern_Rotate
|
||||
@ stub UiaAddEvent
|
||||
@ stdcall UiaAddEvent(ptr long ptr long ptr long ptr ptr)
|
||||
@ stdcall UiaClientsAreListening()
|
||||
#@ stub UiaDisconnectAllProviders
|
||||
@ stdcall UiaDisconnectProvider(ptr)
|
||||
|
|
|
@ -393,6 +393,7 @@ struct UiaFindParams {
|
|||
};
|
||||
|
||||
typedef SAFEARRAY * WINAPI UiaProviderCallback(HWND hwnd,enum ProviderType providerType);
|
||||
typedef void WINAPI UiaEventCallback(struct UiaEventArgs *pArgs,SAFEARRAY *pRequestedData,BSTR pTreeStructure);
|
||||
|
||||
HRESULT WINAPI UiaGetReservedMixedAttributeValue(IUnknown **value);
|
||||
HRESULT WINAPI UiaGetReservedNotSupportedValue(IUnknown **value);
|
||||
|
@ -418,6 +419,8 @@ 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 UiaAddEvent(HUIANODE huianode, EVENTID event_id, UiaEventCallback *callback, enum TreeScope scope,
|
||||
PROPERTYID *prop_ids, int prop_ids_count, struct UiaCacheRequest *cache_req, HUIAEVENT *huiaevent);
|
||||
HRESULT WINAPI UiaRemoveEvent(HUIAEVENT huiaevent);
|
||||
HRESULT WINAPI UiaEventAddWindow(HUIAEVENT huiaevent, HWND hwnd);
|
||||
HRESULT WINAPI UiaEventRemoveWindow(HUIAEVENT huiaevent, HWND hwnd);
|
||||
|
|
Loading…
Add table
Reference in a new issue