20 Aug
2024
20 Aug
'24
12:59 p.m.
Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/tests/listview.c:
CoUninitialize(); }
+static void test_LVM_GETNEXTITEM(void) +{ + HWND hwnd; + DWORD r; + UINT uFlagsAbove = MAKELPARAM(LVNI_ABOVE, 0);
uFlagsAbove and uFlagsBelow are not necessary. You can use LVNI_ABOVE and LVNI_BELOW directly instead. Cast them to LPARAM to avoid warnings if needed. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5909#note_79256