https://git.reactos.org/?p=reactos.git;a=commitdiff;h=6488440a6a9abee129512…
commit 6488440a6a9abee129512a3717a8b81f0951e395
Author: Jérôme Gardou <jerome.gardou(a)reactos.org>
AuthorDate: Mon Nov 16 14:27:47 2020 +0100
Commit: Jérôme Gardou <zefklop(a)users.noreply.github.com>
CommitDate: Mon Nov 16 16:58:10 2020 +0100
[PARTMGR] Use FORCEINLINE
---
drivers/storage/partmgr/partmgr.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/storage/partmgr/partmgr.h b/drivers/storage/partmgr/partmgr.h
index 05a0ee6bbbd..71eccfb8823 100644
--- a/drivers/storage/partmgr/partmgr.h
+++ b/drivers/storage/partmgr/partmgr.h
@@ -139,7 +139,7 @@ IssueSyncIoControlRequest(
_In_ ULONG OutputBufferLength,
_In_ BOOLEAN InternalDeviceIoControl);
-inline
+FORCEINLINE
BOOLEAN
VerifyIrpOutBufferSize(
_In_ PIRP Irp,
@@ -154,7 +154,7 @@ VerifyIrpOutBufferSize(
return TRUE;
}
-inline
+FORCEINLINE
BOOLEAN
VerifyIrpInBufferSize(
_In_ PIRP Irp,
@@ -169,7 +169,7 @@ VerifyIrpInBufferSize(
return TRUE;
}
-inline
+FORCEINLINE
VOID
PartMgrAcquireLayoutLock(
_In_ PFDO_EXTENSION FDOExtension)
@@ -179,7 +179,7 @@ PartMgrAcquireLayoutLock(
KeWaitForSingleObject(&FDOExtension->SyncEvent, Executive, KernelMode, FALSE,
NULL);
}
-inline
+FORCEINLINE
VOID
PartMgrReleaseLayoutLock(
_In_ PFDO_EXTENSION FDOExtension)