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 "->".