25 Aug
2025
25 Aug
'25
3:39 p.m.
Piotr Caban (@piotr) commented about dlls/vccorlib140/vccorlib.c:
+ } + return ref; +} + +static HRESULT WINAPI platform_type_GetIids(IClosable *iface, ULONG *count, GUID **iids) +{ + FIXME("(%p, %p, %p) stub\n", iface, count, iids); + return E_NOTIMPL; +} + +static HRESULT WINAPI platform_type_GetRuntimeClassName(IClosable *iface, HSTRING *name) +{ + static const WCHAR *str = L"Platform.Type"; + + TRACE("(%p, %p)\n", iface, name); + return WindowsCreateString(str, wcslen(str), name); Is there a reason for not using WindowsCreateStringReference here?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8831#note_113765