mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +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,
|
LPSECURITY_ATTRIBUTES lpThreadAttributes,
|
||||||
PSECTION_IMAGE_INFORMATION SectionImageInfo,
|
PSECTION_IMAGE_INFORMATION SectionImageInfo,
|
||||||
PCLIENT_ID ClientId,
|
PCLIENT_ID ClientId,
|
||||||
BOOLEAN InheritHandles,
|
|
||||||
DWORD dwCreationFlags)
|
DWORD dwCreationFlags)
|
||||||
{
|
{
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
@ -579,7 +578,6 @@ BasepCreateFirstThread(HANDLE ProcessHandle,
|
||||||
CreateProcessRequest->ProcessHandle = ProcessHandle;
|
CreateProcessRequest->ProcessHandle = ProcessHandle;
|
||||||
CreateProcessRequest->ThreadHandle = hThread;
|
CreateProcessRequest->ThreadHandle = hThread;
|
||||||
CreateProcessRequest->CreationFlags = dwCreationFlags;
|
CreateProcessRequest->CreationFlags = dwCreationFlags;
|
||||||
CreateProcessRequest->bInheritHandles = InheritHandles;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* For GUI applications we turn on the 2nd bit. This also allows
|
* For GUI applications we turn on the 2nd bit. This also allows
|
||||||
|
@ -3251,7 +3249,6 @@ GetAppName:
|
||||||
lpThreadAttributes,
|
lpThreadAttributes,
|
||||||
&SectionImageInfo,
|
&SectionImageInfo,
|
||||||
&ClientId,
|
&ClientId,
|
||||||
bInheritHandles,
|
|
||||||
dwCreationFlags);
|
dwCreationFlags);
|
||||||
|
|
||||||
if (hThread == NULL)
|
if (hThread == NULL)
|
||||||
|
|
|
@ -82,11 +82,6 @@ typedef struct
|
||||||
PVOID PebAddressNative;
|
PVOID PebAddressNative;
|
||||||
ULONG PebAddressWow64;
|
ULONG PebAddressWow64;
|
||||||
USHORT ProcessorArchitecture;
|
USHORT ProcessorArchitecture;
|
||||||
|
|
||||||
//
|
|
||||||
// ReactOS Data
|
|
||||||
//
|
|
||||||
BOOL bInheritHandles;
|
|
||||||
} BASE_CREATE_PROCESS, *PBASE_CREATE_PROCESS;
|
} BASE_CREATE_PROCESS, *PBASE_CREATE_PROCESS;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
|
|
Loading…
Reference in a new issue