20 Mar
2017
20 Mar
'17
10:02 a.m.
Hi Andrey,
+HRESULT WINAPI UiaGetReservedMixedAttributeValue(IUnknown **value) +{ + FIXME("(%p) stub!\n", value); + return S_OK; +}
Your returning success but not assigning anything to the out parameter "value". If you have to return S_OK, maybe *value = NULL might be good enough. Same goes for patch 3. Best Regards Alistair Leslie-Hughes