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;