5 Jul
2023
5 Jul
'23
7:35 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/tests/syslink.c:
+ switch(message) + { + case WM_NOTIFY: + { + NMLINK *nml = ((NMLINK*)lParam); + if (nml && NM_CLICK == nml->hdr.code) + { + g_linkid = nml->item.iLink ; + } + + /* Return zero to indicate default processing */ + return 0; + } + + default: + ret = DefWindowProcW(hwnd, message, wParam, lParam); This is breaking defwndproc_counter.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/3114#note_37952