[KERNEL32/BASESRV]

Remove now unneeded bInheritHandles member / parameter.

svn path=/branches/ros-csrss/; revision=58097
This commit is contained in:
Hermès Bélusca-Maïto 2013-01-01 23:41:42 +00:00
parent d820098fa6
commit e635242284
2 changed files with 0 additions and 8 deletions

View file

@ -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)

View file

@ -82,11 +82,6 @@ typedef struct
PVOID PebAddressNative;
ULONG PebAddressWow64;
USHORT ProcessorArchitecture;
//
// ReactOS Data
//
BOOL bInheritHandles;
} BASE_CREATE_PROCESS, *PBASE_CREATE_PROCESS;
typedef struct