Author: pschweitzer
Date: Sun Apr 27 12:59:37 2014
New Revision: 63017
URL:
http://svn.reactos.org/svn/reactos?rev=63017&view=rev
Log:
[FREELDR]
Properly declare with FORCEINLINE
Modified:
trunk/reactos/boot/freeldr/freeldr/include/mm.h
Modified: trunk/reactos/boot/freeldr/freeldr/include/mm.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/inclu…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/include/mm.h [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/include/mm.h [iso-8859-1] Sun Apr 27 12:59:37 2014
@@ -170,16 +170,16 @@
FrLdrHeapFreeEx(FrLdrDefaultHeap, MemoryPointer, Tag);
}
+FORCEINLINE
PVOID
-FORCEINLINE
FrLdrTempAlloc(
ULONG Size, ULONG Tag)
{
return FrLdrHeapAllocateEx(FrLdrTempHeap, Size, Tag);
}
+FORCEINLINE
VOID
-FORCEINLINE
FrLdrTempFree(
PVOID Allocation, ULONG Tag)
{