uiautomationcore: Add UiaGetReservedMixedAttributeValue 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:03 +01:00 committed by Alexandre Julliard
parent 995b6900a7
commit 6405677297
3 changed files with 12 additions and 1 deletions

View File

@ -46,6 +46,16 @@ BOOL WINAPI UiaClientsAreListening(void)
return FALSE;
}
/***********************************************************************
* UiaGetReservedMixedAttributeValue (uiautomationcore.@)
*/
HRESULT WINAPI UiaGetReservedMixedAttributeValue(IUnknown **value)
{
FIXME("(%p) stub!\n", value);
*value = NULL;
return S_OK;
}
/***********************************************************************
* UiaLookupId (uiautomationcore.@)
*/

View File

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

View File

@ -48,6 +48,7 @@ enum AutomationIdentifierType
AutomationIdentifierType_TextAttribute
};
HRESULT WINAPI UiaGetReservedMixedAttributeValue(IUnknown **value);
int WINAPI UiaLookupId(enum AutomationIdentifierType type, const GUID *guid);
BOOL WINAPI UiaPatternRelease(HUIAPATTERNOBJECT hobj);
BOOL WINAPI UiaTextRangeRelease(HUIATEXTRANGE hobj);