From e7365f8b00f69eda93a668b3f77fe39a4af089b8 Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Wed, 6 Sep 2000 03:08:22 +0000 Subject: [PATCH] Made PsGetCurrentThread STDCALL svn path=/trunk/; revision=1342 --- reactos/ntoskrnl/ps/thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/ps/thread.c b/reactos/ntoskrnl/ps/thread.c index 2f037918653..7f9540cfaec 100644 --- a/reactos/ntoskrnl/ps/thread.c +++ b/reactos/ntoskrnl/ps/thread.c @@ -1,4 +1,4 @@ -/* $Id: thread.c,v 1.53 2000/07/30 18:22:35 dwelch Exp $ +/* $Id: thread.c,v 1.54 2000/09/06 03:08:22 phreak Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -111,7 +111,7 @@ PKTHREAD STDCALL KeGetCurrentThread(VOID) return(&(CurrentThread->Tcb)); } -PETHREAD PsGetCurrentThread(VOID) +PETHREAD STDCALL PsGetCurrentThread(VOID) { return(CurrentThread); }