Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/tests/listview.c:
- DWORD r;
- UINT uFlagsAbove = MAKELPARAM(LVNI_ABOVE, 0);
- UINT uFlagsBelow = MAKELPARAM(LVNI_BELOW, 0);
- hwnd = create_listview_control(LVS_REPORT);
- insert_item(hwnd, 0);
- insert_item(hwnd, 1);
- insert_item(hwnd, 2);
- r = SendMessageA(hwnd, LVM_GETNEXTITEM, 0, uFlagsAbove);
- expect(-1, r);
- r = SendMessageA(hwnd, LVM_GETNEXTITEM, 0, uFlagsBelow);
- expect(1, r);
- r = SendMessageA(hwnd, LVM_GETNEXTITEM, 1, uFlagsAbove);
- expect(0, r);
- r = SendMessageA(hwnd, LVM_GETNEXTITEM, 1, uFlagsBelow);
there is no todo_wine in this patch, which means the wine tests are already passing without your fix.