Fixed missing initializations of struct SHELLEXECUTEINFO.
This commit is contained in:
parent
1da37e6ac4
commit
17b9837af4
|
@ -3066,6 +3066,10 @@ BOOL launch_entry(Entry* entry, HWND hwnd, UINT nCmdShow)
|
|||
shexinfo.cbSize = sizeof(SHELLEXECUTEINFO);
|
||||
shexinfo.fMask = SEE_MASK_IDLIST;
|
||||
shexinfo.hwnd = hwnd;
|
||||
shexinfo.lpVerb = NULL;
|
||||
shexinfo.lpFile = NULL;
|
||||
shexinfo.lpParameters = NULL;
|
||||
shexinfo.lpDirectory = NULL;
|
||||
shexinfo.nShow = nCmdShow;
|
||||
shexinfo.lpIDList = get_to_absolute_pidl(entry, hwnd);
|
||||
|
||||
|
|
Loading…
Reference in New Issue