From ae14d5ffc64d42d094c1a24aad47b99d9dedcd83 Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Tue, 6 Feb 2001 05:12:42 +0000 Subject: [PATCH] If APC routines are supposed to be STDCALL, then they should all be, and a lot of code needs fixed. Because all of the existing code seems to not use STDCALL, neither should the normal routine. This was causing ntoskrnl to fail to compile svn path=/trunk/; revision=1607 --- reactos/include/ddk/ketypes.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/reactos/include/ddk/ketypes.h b/reactos/include/ddk/ketypes.h index 738091b4184..d470042b706 100644 --- a/reactos/include/ddk/ketypes.h +++ b/reactos/include/ddk/ketypes.h @@ -98,14 +98,14 @@ typedef BOOLEAN (*PKSYNCHRONIZE_ROUTINE)(PVOID SynchronizeContext); struct _KAPC; -typedef VOID STDCALL (*PKNORMAL_ROUTINE)(PVOID NormalContext, - PVOID SystemArgument1, - PVOID SystemArgument2); +typedef VOID (*PKNORMAL_ROUTINE)(PVOID NormalContext, + PVOID SystemArgument1, + PVOID SystemArgument2); typedef VOID (*PKKERNEL_ROUTINE)(struct _KAPC* Apc, - PKNORMAL_ROUTINE* NormalRoutine, - PVOID* NormalContext, - PVOID* SystemArgument1, - PVOID* SystemArgument2); + PKNORMAL_ROUTINE* NormalRoutine, + PVOID* NormalContext, + PVOID* SystemArgument1, + PVOID* SystemArgument2); typedef VOID (*PKRUNDOWN_ROUTINE)(struct _KAPC* Apc);