From 65c3f8c5a6bb5688c1b52e8703911cd6131563e3 Mon Sep 17 00:00:00 2001 From: Mike Nordell Date: Sat, 21 Aug 2004 12:34:58 +0000 Subject: [PATCH] fix placement of STDCALL for function declarations svn path=/trunk/; revision=10626 --- reactos/ntoskrnl/include/internal/ps.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/ntoskrnl/include/internal/ps.h b/reactos/ntoskrnl/include/internal/ps.h index f7244cd5f2f..e94d773ca3a 100644 --- a/reactos/ntoskrnl/include/internal/ps.h +++ b/reactos/ntoskrnl/include/internal/ps.h @@ -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: ps.h,v 1.64 2004/08/10 06:26:42 ion Exp $ +/* $Id: ps.h,v 1.65 2004/08/21 12:34:58 tamlin Exp $ * * FILE: ntoskrnl/ke/kthread.c * PURPOSE: Process manager definitions @@ -504,15 +504,15 @@ VOID KeInitializeThread(PKPROCESS Process, PKTHREAD Thread, BOOLEAN First); NTSTATUS KeReleaseThread(PETHREAD Thread); -STDCALL VOID +STDCALL KeStackAttachProcess ( IN PKPROCESS Process, OUT PKAPC_STATE ApcState ); -STDCALL VOID +STDCALL KeUnstackDetachProcess ( IN PKAPC_STATE ApcState );