uiautomationcore: Add UiaGetReservedNotSupportedValue stub.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6405677297
commit
6dd8779b55
|
@ -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.@)
|
||||
*/
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue