mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[KERNEL32/BASESRV]
Remove now unneeded bInheritHandles member / parameter. svn path=/branches/ros-csrss/; revision=58097
This commit is contained in:
parent
d820098fa6
commit
e635242284
2 changed files with 0 additions and 8 deletions
|
@ -528,7 +528,6 @@ BasepCreateFirstThread(HANDLE ProcessHandle,
|
|||
LPSECURITY_ATTRIBUTES lpThreadAttributes,
|
||||
PSECTION_IMAGE_INFORMATION SectionImageInfo,
|
||||
PCLIENT_ID ClientId,
|
||||
BOOLEAN InheritHandles,
|
||||
DWORD dwCreationFlags)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
|
@ -579,7 +578,6 @@ BasepCreateFirstThread(HANDLE ProcessHandle,
|
|||
CreateProcessRequest->ProcessHandle = ProcessHandle;
|
||||
CreateProcessRequest->ThreadHandle = hThread;
|
||||
CreateProcessRequest->CreationFlags = dwCreationFlags;
|
||||
CreateProcessRequest->bInheritHandles = InheritHandles;
|
||||
|
||||
/*
|
||||
* For GUI applications we turn on the 2nd bit. This also allows
|
||||
|
@ -3251,7 +3249,6 @@ GetAppName:
|
|||
lpThreadAttributes,
|
||||
&SectionImageInfo,
|
||||
&ClientId,
|
||||
bInheritHandles,
|
||||
dwCreationFlags);
|
||||
|
||||
if (hThread == NULL)
|
||||
|
|
|
@ -82,11 +82,6 @@ typedef struct
|
|||
PVOID PebAddressNative;
|
||||
ULONG PebAddressWow64;
|
||||
USHORT ProcessorArchitecture;
|
||||
|
||||
//
|
||||
// ReactOS Data
|
||||
//
|
||||
BOOL bInheritHandles;
|
||||
} BASE_CREATE_PROCESS, *PBASE_CREATE_PROCESS;
|
||||
|
||||
typedef struct
|
||||
|
|
Loading…
Reference in a new issue