2002-10-26 Casper S. Hornstrup <[email protected]>

* 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:
Casper Hornstrup
2002-10-25 22:08:21 +00:00
parent c28439db70
commit 9e54d1d8d3
6 changed files with 18 additions and 10 deletions
+8
View File
@@ -1,3 +1,11 @@
2002-10-26 Casper S. Hornstrup <[email protected]>
* 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 <[email protected]>
* apps/tests/tokentest/tokentest.c (ROS_ACE_HEADER): Move field
+2 -2
View File
@@ -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
);
+2 -2
View File
@@ -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;
+2 -2
View File
@@ -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 */
+2 -2
View File
@@ -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;
+2 -2
View File
@@ -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;