mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Fix misplaced STDCALL
svn path=/trunk/; revision=10645
This commit is contained in:
parent
7095fe07cd
commit
0d5eda7a62
4 changed files with 14 additions and 14 deletions
|
@ -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
|
||||
)
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
STDCALL
|
||||
VOID
|
||||
STDCALL
|
||||
KiCoprocessorError(
|
||||
VOID
|
||||
)
|
||||
|
@ -31,8 +31,8 @@ KiCoprocessorError(
|
|||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
STDCALL
|
||||
VOID
|
||||
STDCALL
|
||||
KiUnexpectedInterrupt(
|
||||
VOID
|
||||
)
|
||||
|
|
|
@ -135,8 +135,8 @@ NTSTATUS STDCALL KePulseEvent (PKEVENT Event,
|
|||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
STDCALL
|
||||
VOID
|
||||
STDCALL
|
||||
KeSetEventBoostPriority(
|
||||
IN PKEVENT Event,
|
||||
IN PKTHREAD *Thread OPTIONAL
|
||||
|
|
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue