propsys: Add support for VT_BSTR to PropVariantChangeType.
Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
97c512082c
commit
aa8dc616e0
|
@ -369,7 +369,9 @@ HRESULT WINAPI PropVariantChangeType(PROPVARIANT *ppropvarDest, REFPROPVARIANT p
|
||||||
}
|
}
|
||||||
return hr;
|
return hr;
|
||||||
}
|
}
|
||||||
|
|
||||||
case VT_LPWSTR:
|
case VT_LPWSTR:
|
||||||
|
case VT_BSTR:
|
||||||
{
|
{
|
||||||
WCHAR *res;
|
WCHAR *res;
|
||||||
hr = PropVariantToStringAlloc(propvarSrc, &res);
|
hr = PropVariantToStringAlloc(propvarSrc, &res);
|
||||||
|
|
Loading…
Reference in New Issue