28 May
2024
28 May
'24
8:36 p.m.
Jacek Caban (@jacek) commented about dlls/jscript/jscript.h:
#endif
+struct prop_desc { + const struct prop_desc_vtbl *vtbl; + jsdisp_t *jsdisp; + DISPID id; +};
Do we need this struct? dispex.c callers already know jsdisp and id and the usual way to pass them to vtbl functions is by passing two arguments. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5444#note_66816