Commit e84b95ef authored by Connor McAdams's avatar Connor McAdams Committed by Alexandre Julliard

uiautomationcore: Add UiaRaiseNotificationEvent stub.

parent 5e7356c8
......@@ -347,6 +347,17 @@ HRESULT WINAPI UiaRaiseTextEditTextChangedEvent(IRawElementProviderSimple *provi
return S_OK;
}
/***********************************************************************
* UiaRaiseNotificationEvent (uiautomationcore.@)
*/
HRESULT WINAPI UiaRaiseNotificationEvent(IRawElementProviderSimple *provider, enum NotificationKind notification_kind,
enum NotificationProcessing notification_processing, BSTR display_str, BSTR activity_id)
{
FIXME("(%p, %d, %d, %s, %s): stub\n", provider, notification_kind, notification_processing,
debugstr_w(display_str), debugstr_w(activity_id));
return S_OK;
}
HRESULT WINAPI UiaHostProviderFromHwnd(HWND hwnd, IRawElementProviderSimple **provider)
{
struct hwnd_host_provider *host_prov;
......
......@@ -88,7 +88,7 @@
@ stdcall UiaRaiseAutomationEvent(ptr long)
@ stdcall UiaRaiseAutomationPropertyChangedEvent(ptr long int128 int128)
#@ stub UiaRaiseChangesEvent
#@ stub UiaRaiseNotificationEvent
@ stdcall UiaRaiseNotificationEvent(ptr long long wstr wstr)
@ stdcall UiaRaiseStructureChangedEvent(ptr long ptr long)
@ stdcall UiaRaiseTextEditTextChangedEvent(ptr long ptr)
@ stdcall UiaRegisterProviderCallback(ptr)
......
......@@ -480,6 +480,8 @@ HRESULT WINAPI UiaRaiseAsyncContentLoadedEvent(IRawElementProviderSimple *provid
enum AsyncContentLoadedState async_content_loaded_state, double percent_complete);
HRESULT WINAPI UiaRaiseAutomationEvent(IRawElementProviderSimple *provider, EVENTID id);
HRESULT WINAPI UiaRaiseAutomationPropertyChangedEvent(IRawElementProviderSimple *, PROPERTYID, VARIANT, VARIANT);
HRESULT WINAPI UiaRaiseNotificationEvent(IRawElementProviderSimple *provider, enum NotificationKind notification_kind,
enum NotificationProcessing notification_processing, BSTR display_str, BSTR activity_id);
HRESULT WINAPI UiaRaiseStructureChangedEvent(IRawElementProviderSimple *provider, enum StructureChangeType struct_change_type,
int *runtime_id, int runtime_id_len);
HRESULT WINAPI UiaRaiseTextEditTextChangedEvent(IRawElementProviderSimple *provider, enum TextEditChangeType text_edit_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