18 Dec
2025
18 Dec
'25
8:09 p.m.
Nikolay Sivov (@nsivov) commented about dlls/comctl32/tests/updown.c:
expect(1, LOWORD(r)); expect(40, HIWORD(r));
- accel.nSec = 0; - accel.nInc = 5; - r = SendMessageA(updown, UDM_SETACCEL, 1, (LPARAM)&accel); + r = SendMessageA(updown, UDM_GETACCEL, 3, (LPARAM)accel); + expect(3, r); + expect(0, accel[0].nSec); + expect(1, accel[0].nInc); + expect(2, accel[1].nSec); + expect(5, accel[1].nInc); + expect(5, accel[2].nSec); + expect(20, accel[2].nInc); +
Will we be able to tell if 3 is in fact an initial number of those parameters, by using wParam = 4? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9795#note_125839