From 6dd8779b553db7947a10a90d5dc4d7ee7a25beeb Mon Sep 17 00:00:00 2001 From: Andrey Gusev Date: Wed, 22 Mar 2017 14:03:22 +0100 Subject: [PATCH] uiautomationcore: Add UiaGetReservedNotSupportedValue stub. Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- dlls/uiautomationcore/uia_main.c | 10 ++++++++++ dlls/uiautomationcore/uiautomationcore.spec | 2 +- include/uiautomationcoreapi.h | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/dlls/uiautomationcore/uia_main.c b/dlls/uiautomationcore/uia_main.c index a4fdd229886..af986810f56 100644 --- a/dlls/uiautomationcore/uia_main.c +++ b/dlls/uiautomationcore/uia_main.c @@ -56,6 +56,16 @@ HRESULT WINAPI UiaGetReservedMixedAttributeValue(IUnknown **value) return S_OK; } +/*********************************************************************** + * UiaGetReservedNotSupportedValue (uiautomationcore.@) + */ +HRESULT WINAPI UiaGetReservedNotSupportedValue(IUnknown **value) +{ + FIXME("(%p) stub!\n", value); + *value = NULL; + return S_OK; +} + /*********************************************************************** * UiaLookupId (uiautomationcore.@) */ diff --git a/dlls/uiautomationcore/uiautomationcore.spec b/dlls/uiautomationcore/uiautomationcore.spec index 989dc431c42..ddf84f63c07 100644 --- a/dlls/uiautomationcore/uiautomationcore.spec +++ b/dlls/uiautomationcore/uiautomationcore.spec @@ -60,7 +60,7 @@ @ stub UiaGetPatternProvider @ stub UiaGetPropertyValue @ stdcall UiaGetReservedMixedAttributeValue(ptr) -@ stub UiaGetReservedNotSupportedValue +@ stdcall UiaGetReservedNotSupportedValue(ptr) @ stub UiaGetRootNode @ stub UiaGetRuntimeId @ stub UiaGetUpdatedCache diff --git a/include/uiautomationcoreapi.h b/include/uiautomationcoreapi.h index c8c442fded5..fbe47ad184f 100644 --- a/include/uiautomationcoreapi.h +++ b/include/uiautomationcoreapi.h @@ -49,6 +49,7 @@ enum AutomationIdentifierType }; HRESULT WINAPI UiaGetReservedMixedAttributeValue(IUnknown **value); +HRESULT WINAPI UiaGetReservedNotSupportedValue(IUnknown **value); int WINAPI UiaLookupId(enum AutomationIdentifierType type, const GUID *guid); BOOL WINAPI UiaPatternRelease(HUIAPATTERNOBJECT hobj); BOOL WINAPI UiaTextRangeRelease(HUIATEXTRANGE hobj);