From 9e54d1d8d3248fecd4117f269c16e2a387f9bed2 Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Fri, 25 Oct 2002 22:08:21 +0000 Subject: [PATCH] 2002-10-26 Casper S. Hornstrup * 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 --- reactos/ChangeLog | 8 ++++++++ reactos/include/ddk/zw.h | 4 ++-- reactos/subsys/csrss/csrss.c | 4 ++-- reactos/subsys/smss/smss.c | 4 ++-- reactos/subsys/system/autochk/autochk.c | 4 ++-- reactos/subsys/system/usetup/usetup.c | 4 ++-- 6 files changed, 18 insertions(+), 10 deletions(-) diff --git a/reactos/ChangeLog b/reactos/ChangeLog index c443afcd510..df6e1acbc9c 100644 --- a/reactos/ChangeLog +++ b/reactos/ChangeLog @@ -1,3 +1,11 @@ +2002-10-26 Casper S. Hornstrup + + * 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 * apps/tests/tokentest/tokentest.c (ROS_ACE_HEADER): Move field diff --git a/reactos/include/ddk/zw.h b/reactos/include/ddk/zw.h index dbc63724fba..a821ab5a23b 100644 --- a/reactos/include/ddk/zw.h +++ b/reactos/include/ddk/zw.h @@ -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 * PROJECT: ReactOS kernel @@ -2501,7 +2501,7 @@ ZwPrivilegeObjectAuditAlarm( * Calling proces should terminate itself. * RETURNS: Status */ -VOID +VOID STDCALL NtProcessStartup( IN PPEB Peb ); diff --git a/reactos/subsys/csrss/csrss.c b/reactos/subsys/csrss/csrss.c index 47028106568..f4f2d8deeb5 100644 --- a/reactos/subsys/csrss/csrss.c +++ b/reactos/subsys/csrss/csrss.c @@ -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 * @@ -39,7 +39,7 @@ /* Native process' entry point */ -VOID NtProcessStartup(PPEB Peb) +VOID STDCALL NtProcessStartup(PPEB Peb) { PRTL_USER_PROCESS_PARAMETERS ProcParams; PWSTR ArgBuffer; diff --git a/reactos/subsys/smss/smss.c b/reactos/subsys/smss/smss.c index 2683cb38f10..f49085afaa0 100644 --- a/reactos/subsys/smss/smss.c +++ b/reactos/subsys/smss/smss.c @@ -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 * @@ -64,7 +64,7 @@ PrintString(char* fmt,...) /* Native image's entry point */ -VOID +VOID STDCALL NtProcessStartup(PPEB Peb) { HANDLE Children[2]; /* csrss, winlogon */ diff --git a/reactos/subsys/system/autochk/autochk.c b/reactos/subsys/system/autochk/autochk.c index 5b2ef541868..b04d96023b9 100644 --- a/reactos/subsys/system/autochk/autochk.c +++ b/reactos/subsys/system/autochk/autochk.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * 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 * PROJECT: ReactOS kernel @@ -65,7 +65,7 @@ PrintString(char* fmt,...) /* Native image's entry point */ -VOID +VOID STDCALL NtProcessStartup(PPEB Peb) { ULONG i; diff --git a/reactos/subsys/system/usetup/usetup.c b/reactos/subsys/system/usetup/usetup.c index 9726e7c2a90..0df85762063 100644 --- a/reactos/subsys/system/usetup/usetup.c +++ b/reactos/subsys/system/usetup/usetup.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * 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 * PROJECT: ReactOS user-mode setup application @@ -740,7 +740,7 @@ SuccessPage(PINPUT_RECORD Ir) } -VOID +VOID STDCALL NtProcessStartup(PPEB Peb) { NTSTATUS Status;