30 May
2024
30 May
'24
9:29 a.m.
Huw Davies (@huw) commented about dlls/shell32/shlview_cmenu.c:
FIXME("No property pages found.\n"); }
+ +static void DoCreateLink(ContextMenu *This) +{ + IShellLinkW* shelllink; + IPersistFile* persistfile; + WCHAR wszFilename[MAX_PATH]; + WCHAR wszLinkFilename[MAX_PATH]; + WCHAR root[MAX_PATH]; + WCHAR lnkfile[MAX_PATH];
Can we dynamically allocate (at least some of) these so we don't have to have `MAX_PATH` limits? Also can we drop the `wsz` prefixes and snake case things? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5373#note_71731