Gabriel Ivăncescu (@insn) commented about dlls/mshtml/htmldoc.c:
.get_gecko_target = HTMLDocumentNode_get_gecko_target, .bind_event = HTMLDocumentNode_bind_event, .get_parent_event_target = HTMLDocumentNode_get_parent_event_target, + .handle_event = HTMLDocumentNode_handle_event, .get_cp_container = HTMLDocumentNode_get_cp_container, - .set_current_event = HTMLDocumentNode_set_current_event + .set_current_event = HTMLDocumentNode_set_current_event, + .pre_handle_event = HTMLDocumentNode_pre_handle_event,
Nit: since we use designated initializers now, you can just put `pre_handle_event` before `handle_event` for consistency (same in the vtbl). You shouldn't have to change the others, regardless. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5156#note_62655