Commit 64056772 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

uiautomationcore: Add UiaGetReservedMixedAttributeValue stub.

parent 995b6900
......@@ -47,6 +47,16 @@ BOOL WINAPI UiaClientsAreListening(void)
}
/***********************************************************************
* UiaGetReservedMixedAttributeValue (uiautomationcore.@)
*/
HRESULT WINAPI UiaGetReservedMixedAttributeValue(IUnknown **value)
{
FIXME("(%p) stub!\n", value);
*value = NULL;
return S_OK;
}
/***********************************************************************
* UiaLookupId (uiautomationcore.@)
*/
int WINAPI UiaLookupId(enum AutomationIdentifierType type, const GUID *guid)
......
......@@ -59,7 +59,7 @@
@ stub UiaGetErrorDescription
@ stub UiaGetPatternProvider
@ stub UiaGetPropertyValue
@ stub UiaGetReservedMixedAttributeValue
@ stdcall UiaGetReservedMixedAttributeValue(ptr)
@ stub UiaGetReservedNotSupportedValue
@ stub UiaGetRootNode
@ stub UiaGetRuntimeId
......
......@@ -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);
......
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