11 Apr
2023
11 Apr
'23
11:37 a.m.
Nikolay Sivov (@nsivov) commented about dlls/shell32/shlview.c:
static HRESULT WINAPI FolderView2_SetCurrentFolderFlags(IFolderView2 *iface, DWORD mask, DWORD flags) { IShellViewImpl *This = impl_from_IFolderView2(iface); - FIXME("(%p)->(0x%08lx 0x%08lx), stub\n", This, mask, flags); - return E_NOTIMPL; + + TRACE("(%p)->(%#lx %#lx).\n", This, mask, flags); Since you're changing this, let's improve formatting a bit, by getting rid of This (replace with 'view', 'shellview', 'folderview', etc), and using iface pointer in trace messages, with other arguments simply being comma-separated. So no braces or "->".
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2628#note_29581