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