add mising initializations for ShellExecuteEx()

svn path=/trunk/; revision=6960
This commit is contained in:
Martin Fuchs 2003-12-11 20:14:15 +00:00
parent 30d25fb859
commit 4fca2f2538

View file

@ -3048,6 +3048,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);