Commit 6dd8779b authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

uiautomationcore: Add UiaGetReservedNotSupportedValue stub.

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