Nikolay Sivov (@nsivov) commented about dlls/comctl32/tests/listview.c:
+ if (v6) + { + if (test_styles[i] == LVS_REPORT) + { + if (is_64bit) + expected_msgs = v6_64bit_parent_report_cd_bk_seq; + else + expected_msgs = v6_32bit_parent_report_cd_bk_seq; + } + else if (test_styles[i] == (LVS_REPORT | LVS_OWNERDRAWFIXED)) + { + if (is_64bit) + expected_msgs = v6_64bit_ownerdrawfixed_parent_list_cd_bk_seq; + else + expected_msgs = v6_32bit_ownerdrawfixed_parent_list_cd_bk_seq; + } Could we check BkMode some other way, without different sequences. We are not going to replicate them anyway.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8327#note_108050