Commit 23c10c92 authored by Connor McAdams's avatar Connor McAdams Committed by Alexandre Julliard

uiautomationcore: Add UiaRaiseChangesEvent stub.

parent e84b95ef
...@@ -358,6 +358,16 @@ HRESULT WINAPI UiaRaiseNotificationEvent(IRawElementProviderSimple *provider, en ...@@ -358,6 +358,16 @@ HRESULT WINAPI UiaRaiseNotificationEvent(IRawElementProviderSimple *provider, en
return S_OK; return S_OK;
} }
/***********************************************************************
* UiaRaiseChangesEvent (uiautomationcore.@)
*/
HRESULT WINAPI UiaRaiseChangesEvent(IRawElementProviderSimple *provider, int event_id_count,
struct UiaChangeInfo *uia_changes)
{
FIXME("(%p, %d, %p): stub\n", provider, event_id_count, uia_changes);
return S_OK;
}
HRESULT WINAPI UiaHostProviderFromHwnd(HWND hwnd, IRawElementProviderSimple **provider) HRESULT WINAPI UiaHostProviderFromHwnd(HWND hwnd, IRawElementProviderSimple **provider)
{ {
struct hwnd_host_provider *host_prov; struct hwnd_host_provider *host_prov;
......
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
@ stdcall UiaRaiseAsyncContentLoadedEvent(ptr long double) @ stdcall UiaRaiseAsyncContentLoadedEvent(ptr long double)
@ stdcall UiaRaiseAutomationEvent(ptr long) @ stdcall UiaRaiseAutomationEvent(ptr long)
@ stdcall UiaRaiseAutomationPropertyChangedEvent(ptr long int128 int128) @ stdcall UiaRaiseAutomationPropertyChangedEvent(ptr long int128 int128)
#@ stub UiaRaiseChangesEvent @ stdcall UiaRaiseChangesEvent(ptr long ptr)
@ stdcall UiaRaiseNotificationEvent(ptr long long wstr wstr) @ stdcall UiaRaiseNotificationEvent(ptr long long wstr wstr)
@ stdcall UiaRaiseStructureChangedEvent(ptr long ptr long) @ stdcall UiaRaiseStructureChangedEvent(ptr long ptr long)
@ stdcall UiaRaiseTextEditTextChangedEvent(ptr long ptr) @ stdcall UiaRaiseTextEditTextChangedEvent(ptr long ptr)
......
...@@ -480,6 +480,8 @@ HRESULT WINAPI UiaRaiseAsyncContentLoadedEvent(IRawElementProviderSimple *provid ...@@ -480,6 +480,8 @@ HRESULT WINAPI UiaRaiseAsyncContentLoadedEvent(IRawElementProviderSimple *provid
enum AsyncContentLoadedState async_content_loaded_state, double percent_complete); enum AsyncContentLoadedState async_content_loaded_state, double percent_complete);
HRESULT WINAPI UiaRaiseAutomationEvent(IRawElementProviderSimple *provider, EVENTID id); HRESULT WINAPI UiaRaiseAutomationEvent(IRawElementProviderSimple *provider, EVENTID id);
HRESULT WINAPI UiaRaiseAutomationPropertyChangedEvent(IRawElementProviderSimple *, PROPERTYID, VARIANT, VARIANT); HRESULT WINAPI UiaRaiseAutomationPropertyChangedEvent(IRawElementProviderSimple *, PROPERTYID, VARIANT, VARIANT);
HRESULT WINAPI UiaRaiseChangesEvent(IRawElementProviderSimple *provider, int event_id_count,
struct UiaChangeInfo *uia_changes);
HRESULT WINAPI UiaRaiseNotificationEvent(IRawElementProviderSimple *provider, enum NotificationKind notification_kind, HRESULT WINAPI UiaRaiseNotificationEvent(IRawElementProviderSimple *provider, enum NotificationKind notification_kind,
enum NotificationProcessing notification_processing, BSTR display_str, BSTR activity_id); enum NotificationProcessing notification_processing, BSTR display_str, BSTR activity_id);
HRESULT WINAPI UiaRaiseStructureChangedEvent(IRawElementProviderSimple *provider, enum StructureChangeType struct_change_type, HRESULT WINAPI UiaRaiseStructureChangedEvent(IRawElementProviderSimple *provider, enum StructureChangeType struct_change_type,
......
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