25 Aug
2025
25 Aug
'25
3:39 p.m.
Piotr Caban (@piotr) commented about dlls/vccorlib140/vccorlib.c:
+ +static HRESULT WINAPI platform_type_GetTrustLevel(IClosable *iface, TrustLevel *level) +{ + FIXME("(%p, %p) stub\n", iface, level); + return E_NOTIMPL; +} + +static HRESULT WINAPI platform_type_Close(IClosable *iface) +{ + FIXME("(%p) stub\n", iface); + return E_NOTIMPL; +} + +static const IClosableVtbl platform_type_vtbl = +{ + /* IUnknown */ Please add comments for all the interfaces or remove this one. There's also an unneeded newline in the structure.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8831#note_113766