mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
Fix executing applications. Sorry for the delay, this was like finding a needle in a hay stack. Gotta love splitting patches..
svn path=/trunk/; revision=16548
This commit is contained in:
parent
6f84809a47
commit
c01f0050df
1 changed files with 2 additions and 2 deletions
|
@ -1345,8 +1345,8 @@ CreateProcessW(LPCWSTR lpApplicationName,
|
|||
*/
|
||||
if (lpStartupInfo)
|
||||
{
|
||||
Ppb->Flags = lpStartupInfo->dwFlags;
|
||||
if (Ppb->Flags & STARTF_USESHOWWINDOW)
|
||||
Ppb->WindowFlags = lpStartupInfo->dwFlags;
|
||||
if (Ppb->WindowFlags & STARTF_USESHOWWINDOW)
|
||||
{
|
||||
Ppb->ShowWindowFlags = lpStartupInfo->wShowWindow;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue