mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
add mising initializations for ShellExecuteEx()
svn path=/trunk/; revision=6960
This commit is contained in:
parent
30d25fb859
commit
4fca2f2538
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue