From 0d5eda7a62f0b2f5b626aff67a31c859bbce04b3 Mon Sep 17 00:00:00 2001 From: Mike Nordell Date: Sat, 21 Aug 2004 21:09:39 +0000 Subject: [PATCH] Fix misplaced STDCALL svn path=/trunk/; revision=10645 --- reactos/ntoskrnl/ke/dpc.c | 6 +++--- reactos/ntoskrnl/ke/error.c | 4 ++-- reactos/ntoskrnl/ke/event.c | 2 +- reactos/ntoskrnl/ke/kthread.c | 16 ++++++++-------- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/reactos/ntoskrnl/ke/dpc.c b/reactos/ntoskrnl/ke/dpc.c index 48b9ae3b447..4346193894d 100644 --- a/reactos/ntoskrnl/ke/dpc.c +++ b/reactos/ntoskrnl/ke/dpc.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: dpc.c,v 1.34 2004/08/15 16:39:05 chorns Exp $ +/* $Id: dpc.c,v 1.35 2004/08/21 21:09:39 tamlin Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -139,8 +139,8 @@ KiDispatchInterrupt(VOID) /* * @unimplemented */ -STDCALL VOID +STDCALL KeFlushQueuedDpcs( VOID ) @@ -151,8 +151,8 @@ KeFlushQueuedDpcs( /* * @unimplemented */ -STDCALL VOID +STDCALL KeIsExecutingDpc( VOID ) diff --git a/reactos/ntoskrnl/ke/error.c b/reactos/ntoskrnl/ke/error.c index b52d2c2fcb6..e6759423edc 100644 --- a/reactos/ntoskrnl/ke/error.c +++ b/reactos/ntoskrnl/ke/error.c @@ -19,8 +19,8 @@ /* * @unimplemented */ -STDCALL VOID +STDCALL KiCoprocessorError( VOID ) @@ -31,8 +31,8 @@ KiCoprocessorError( /* * @unimplemented */ -STDCALL VOID +STDCALL KiUnexpectedInterrupt( VOID ) diff --git a/reactos/ntoskrnl/ke/event.c b/reactos/ntoskrnl/ke/event.c index 9078cb96333..1e4021b4995 100644 --- a/reactos/ntoskrnl/ke/event.c +++ b/reactos/ntoskrnl/ke/event.c @@ -135,8 +135,8 @@ NTSTATUS STDCALL KePulseEvent (PKEVENT Event, /* * @unimplemented */ -STDCALL VOID +STDCALL KeSetEventBoostPriority( IN PKEVENT Event, IN PKTHREAD *Thread OPTIONAL diff --git a/reactos/ntoskrnl/ke/kthread.c b/reactos/ntoskrnl/ke/kthread.c index ba76399e039..0fba789746d 100644 --- a/reactos/ntoskrnl/ke/kthread.c +++ b/reactos/ntoskrnl/ke/kthread.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: kthread.c,v 1.50 2004/08/19 21:51:06 hbirr Exp $ +/* $Id: kthread.c,v 1.51 2004/08/21 21:09:39 tamlin Exp $ * * FILE: ntoskrnl/ke/kthread.c * PURPOSE: Microkernel thread support @@ -36,8 +36,8 @@ /* * @unimplemented */ -STDCALL VOID +STDCALL KeCapturePersistentThreadState( IN PVOID CurrentThread, IN ULONG Setting1, @@ -65,8 +65,8 @@ KeFreeStackPage(PVOID Context, MEMORY_AREA* MemoryArea, PVOID Address, /* * @unimplemented */ -STDCALL KPRIORITY +STDCALL KeQueryPriorityThread ( IN PKTHREAD Thread ) @@ -105,8 +105,8 @@ KeReleaseThread(PETHREAD Thread) /* * @unimplemented */ -STDCALL BOOLEAN +STDCALL KeSetKernelStackSwapEnable( IN BOOLEAN Enable ) @@ -321,8 +321,8 @@ KeRescheduleThread() /* * @unimplemented */ -STDCALL VOID +STDCALL KeRevertToUserAffinityThread( VOID ) @@ -333,8 +333,8 @@ KeRevertToUserAffinityThread( /* * @unimplemented */ -STDCALL CCHAR +STDCALL KeSetIdealProcessorThread ( IN PKTHREAD Thread, IN CCHAR Processor @@ -347,8 +347,8 @@ KeSetIdealProcessorThread ( /* * @unimplemented */ -STDCALL VOID +STDCALL KeSetSystemAffinityThread( IN KAFFINITY Affinity ) @@ -359,8 +359,8 @@ KeSetSystemAffinityThread( /* * @unimplemented */ -STDCALL VOID +STDCALL KeTerminateThread( IN KPRIORITY Increment )