From e8904388455eb4e8f88053dae5fe3d29029c4d8a Mon Sep 17 00:00:00 2001 From: Dmitry Gorbachev Date: Mon, 22 Jun 2009 13:37:49 +0000 Subject: [PATCH] Silence warnings. svn path=/trunk/; revision=41539 --- reactos/ntoskrnl/include/internal/ex.h | 6 +++--- reactos/ntoskrnl/include/internal/mm.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/ntoskrnl/include/internal/ex.h b/reactos/ntoskrnl/include/internal/ex.h index e39a129fd42..45f79909e4f 100644 --- a/reactos/ntoskrnl/include/internal/ex.h +++ b/reactos/ntoskrnl/include/internal/ex.h @@ -574,8 +574,8 @@ ExInsertFastReference(IN OUT PEX_FAST_REF FastRef, return TRUE; } -BOOLEAN FORCEINLINE +BOOLEAN ExReleaseFastReference(IN PEX_FAST_REF FastRef, IN PVOID Object) { @@ -609,8 +609,8 @@ ExReleaseFastReference(IN PEX_FAST_REF FastRef, return TRUE; } -EX_FAST_REF FORCEINLINE +EX_FAST_REF ExSwapFastReference(IN PEX_FAST_REF FastRef, IN PVOID Object) { @@ -636,8 +636,8 @@ ExSwapFastReference(IN PEX_FAST_REF FastRef, return OldValue; } -EX_FAST_REF FORCEINLINE +EX_FAST_REF ExCompareSwapFastReference(IN PEX_FAST_REF FastRef, IN PVOID Object, IN PVOID OldObject) diff --git a/reactos/ntoskrnl/include/internal/mm.h b/reactos/ntoskrnl/include/internal/mm.h index 04d2aaa33b9..75524ebb8a9 100644 --- a/reactos/ntoskrnl/include/internal/mm.h +++ b/reactos/ntoskrnl/include/internal/mm.h @@ -1158,8 +1158,8 @@ MiMapPageToZeroInHyperSpace(IN PFN_NUMBER Page); // // ReactOS Compatibility Layer // -PVOID FORCEINLINE +PVOID MmCreateHyperspaceMapping(IN PFN_NUMBER Page) { HyperProcess = (PEPROCESS)KeGetCurrentThread()->ApcState.Process;