mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:13:05 +00:00
CreateProcess was eating the flags, had to pass them on
svn path=/trunk/; revision=1125
This commit is contained in:
parent
ee3307e21d
commit
66780d1d02
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: create.c,v 1.26 2000/03/24 22:25:37 dwelch Exp $
|
/* $Id: create.c,v 1.27 2000/04/23 17:40:52 phreak Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS system libraries
|
* PROJECT: ReactOS system libraries
|
||||||
|
@ -499,7 +499,7 @@ WINBOOL STDCALL CreateProcessW(LPCWSTR lpApplicationName,
|
||||||
CsrRequest.Type = CSRSS_CREATE_PROCESS;
|
CsrRequest.Type = CSRSS_CREATE_PROCESS;
|
||||||
CsrRequest.Data.CreateProcessRequest.NewProcessId =
|
CsrRequest.Data.CreateProcessRequest.NewProcessId =
|
||||||
ProcessBasicInfo.UniqueProcessId;
|
ProcessBasicInfo.UniqueProcessId;
|
||||||
CsrRequest.Data.CreateProcessRequest.Flags = 0;
|
CsrRequest.Data.CreateProcessRequest.Flags = dwCreationFlags;
|
||||||
Status = CsrClientCallServer(&CsrRequest,
|
Status = CsrClientCallServer(&CsrRequest,
|
||||||
&CsrReply,
|
&CsrReply,
|
||||||
sizeof(CSRSS_API_REQUEST),
|
sizeof(CSRSS_API_REQUEST),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue