uiautomationcore: Add UiaGetReservedNotSupportedValue stub.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Andrey Gusev 2017-03-22 14:03:22 +01:00 committed by Alexandre Julliard
parent 6405677297
commit 6dd8779b55
3 changed files with 12 additions and 1 deletions

View File

@ -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.@)
*/

View File

@ -60,7 +60,7 @@
@ stub UiaGetPatternProvider
@ stub UiaGetPropertyValue
@ stdcall UiaGetReservedMixedAttributeValue(ptr)
@ stub UiaGetReservedNotSupportedValue
@ stdcall UiaGetReservedNotSupportedValue(ptr)
@ stub UiaGetRootNode
@ stub UiaGetRuntimeId
@ stub UiaGetUpdatedCache

View File

@ -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);