mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
2002-10-26 Casper S. Hornstrup <chorns@users.sourceforge.net>
* include/ddk/zw.h (NtProcessStartup): Use standard calling convention. * subsys/csrss/csrss.c (NtProcessStartup): Ditto. * subsys/smss/smss.c (NtProcessStartup): Ditto. * subsys/system/autochk/autochk.c (NtProcessStartup): Ditto. * subsys/system/usetup/usetup.c (NtProcessStartup): Ditto. svn path=/trunk/; revision=3655
This commit is contained in:
parent
c28439db70
commit
9e54d1d8d3
6 changed files with 18 additions and 10 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2002-10-26 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/ddk/zw.h (NtProcessStartup): Use standard calling convention.
|
||||||
|
* subsys/csrss/csrss.c (NtProcessStartup): Ditto.
|
||||||
|
* subsys/smss/smss.c (NtProcessStartup): Ditto.
|
||||||
|
* subsys/system/autochk/autochk.c (NtProcessStartup): Ditto.
|
||||||
|
* subsys/system/usetup/usetup.c (NtProcessStartup): Ditto.
|
||||||
|
|
||||||
2002-10-25 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
2002-10-25 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||||
|
|
||||||
* apps/tests/tokentest/tokentest.c (ROS_ACE_HEADER): Move field
|
* apps/tests/tokentest/tokentest.c (ROS_ACE_HEADER): Move field
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
/* $Id: zw.h,v 1.53 2002/09/08 10:47:45 chorns Exp $
|
/* $Id: zw.h,v 1.54 2002/10/25 22:08:20 chorns Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -2501,7 +2501,7 @@ ZwPrivilegeObjectAuditAlarm(
|
||||||
* Calling proces should terminate itself.
|
* Calling proces should terminate itself.
|
||||||
* RETURNS: Status
|
* RETURNS: Status
|
||||||
*/
|
*/
|
||||||
VOID
|
VOID STDCALL
|
||||||
NtProcessStartup(
|
NtProcessStartup(
|
||||||
IN PPEB Peb
|
IN PPEB Peb
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: csrss.c,v 1.13 2002/09/08 10:23:44 chorns Exp $
|
/* $Id: csrss.c,v 1.14 2002/10/25 22:08:20 chorns Exp $
|
||||||
*
|
*
|
||||||
* csrss.c - Client/Server Runtime subsystem
|
* csrss.c - Client/Server Runtime subsystem
|
||||||
*
|
*
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
|
|
||||||
/* Native process' entry point */
|
/* Native process' entry point */
|
||||||
|
|
||||||
VOID NtProcessStartup(PPEB Peb)
|
VOID STDCALL NtProcessStartup(PPEB Peb)
|
||||||
{
|
{
|
||||||
PRTL_USER_PROCESS_PARAMETERS ProcParams;
|
PRTL_USER_PROCESS_PARAMETERS ProcParams;
|
||||||
PWSTR ArgBuffer;
|
PWSTR ArgBuffer;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: smss.c,v 1.13 2002/09/08 10:23:46 chorns Exp $
|
/* $Id: smss.c,v 1.14 2002/10/25 22:08:20 chorns Exp $
|
||||||
*
|
*
|
||||||
* smss.c - Session Manager
|
* smss.c - Session Manager
|
||||||
*
|
*
|
||||||
|
@ -64,7 +64,7 @@ PrintString(char* fmt,...)
|
||||||
|
|
||||||
/* Native image's entry point */
|
/* Native image's entry point */
|
||||||
|
|
||||||
VOID
|
VOID STDCALL
|
||||||
NtProcessStartup(PPEB Peb)
|
NtProcessStartup(PPEB Peb)
|
||||||
{
|
{
|
||||||
HANDLE Children[2]; /* csrss, winlogon */
|
HANDLE Children[2]; /* csrss, winlogon */
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: autochk.c,v 1.3 2002/09/08 10:23:46 chorns Exp $
|
/* $Id: autochk.c,v 1.4 2002/10/25 22:08:20 chorns Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -65,7 +65,7 @@ PrintString(char* fmt,...)
|
||||||
|
|
||||||
/* Native image's entry point */
|
/* Native image's entry point */
|
||||||
|
|
||||||
VOID
|
VOID STDCALL
|
||||||
NtProcessStartup(PPEB Peb)
|
NtProcessStartup(PPEB Peb)
|
||||||
{
|
{
|
||||||
ULONG i;
|
ULONG i;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: usetup.c,v 1.4 2002/10/18 20:04:00 ekohl Exp $
|
/* $Id: usetup.c,v 1.5 2002/10/25 22:08:21 chorns Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS user-mode setup application
|
* PROJECT: ReactOS user-mode setup application
|
||||||
|
@ -740,7 +740,7 @@ SuccessPage(PINPUT_RECORD Ir)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID
|
VOID STDCALL
|
||||||
NtProcessStartup(PPEB Peb)
|
NtProcessStartup(PPEB Peb)
|
||||||
{
|
{
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
Loading…
Reference in a new issue