[PATCH] uiautomationcore: Added UiaRaiseAutomationEvent stub

Nikolay Sivov nsivov at codeweavers.com
Sun May 21 06:46:08 CDT 2017


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 dlls/uiautomationcore/uia_main.c            | 9 +++++++++
 dlls/uiautomationcore/uiautomationcore.spec | 2 +-
 include/uiautomationcoreapi.h               | 1 +
 3 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/dlls/uiautomationcore/uia_main.c b/dlls/uiautomationcore/uia_main.c
index 6e795ab88f..31b7d3e7aa 100644
--- a/dlls/uiautomationcore/uia_main.c
+++ b/dlls/uiautomationcore/uia_main.c
@@ -84,3 +84,12 @@ LRESULT WINAPI UiaReturnRawElementProvider(HWND hwnd, WPARAM wParam,
     FIXME("(%p, %lx, %lx, %p) stub!\n", hwnd, wParam, lParam, elprov);
     return 0;
 }
+
+/***********************************************************************
+ *          UiaRaiseAutomationEvent (uiautomationcore.@)
+ */
+HRESULT WINAPI UiaRaiseAutomationEvent(IRawElementProviderSimple *provider, EVENTID id)
+{
+    FIXME("(%p, %d): stub\n", provider, id);
+    return E_NOTIMPL;
+}
diff --git a/dlls/uiautomationcore/uiautomationcore.spec b/dlls/uiautomationcore/uiautomationcore.spec
index bff1303eda..48a06b2fda 100644
--- a/dlls/uiautomationcore/uiautomationcore.spec
+++ b/dlls/uiautomationcore/uiautomationcore.spec
@@ -78,7 +78,7 @@
 @ stub UiaNodeRelease
 @ stub UiaPatternRelease
 @ stub UiaRaiseAsyncContentLoadedEvent
-@ stub UiaRaiseAutomationEvent
+@ stdcall UiaRaiseAutomationEvent(ptr long)
 @ stub UiaRaiseAutomationPropertyChangedEvent
 @ stub UiaRaiseStructureChangedEvent
 @ stub UiaRegisterProviderCallback
diff --git a/include/uiautomationcoreapi.h b/include/uiautomationcoreapi.h
index 6c1752ec64..12c509fbec 100644
--- a/include/uiautomationcoreapi.h
+++ b/include/uiautomationcoreapi.h
@@ -52,6 +52,7 @@ HRESULT WINAPI UiaGetReservedMixedAttributeValue(IUnknown **value);
 HRESULT WINAPI UiaGetReservedNotSupportedValue(IUnknown **value);
 int WINAPI UiaLookupId(enum AutomationIdentifierType type, const GUID *guid);
 BOOL WINAPI UiaPatternRelease(HUIAPATTERNOBJECT hobj);
+HRESULT WINAPI UiaRaiseAutomationEvent(IRawElementProviderSimple *provider, EVENTID id);
 LRESULT WINAPI UiaReturnRawElementProvider(HWND hwnd, WPARAM wParam, LPARAM lParam, IRawElementProviderSimple *elprov);
 BOOL WINAPI UiaTextRangeRelease(HUIATEXTRANGE hobj);
 
-- 
2.11.0




More information about the wine-patches mailing list