mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:12:57 +00:00
[FREELDR]
Properly declare with FORCEINLINE svn path=/trunk/; revision=63017
This commit is contained in:
parent
6c54a61b58
commit
5d7445aec0
1 changed files with 2 additions and 2 deletions
|
@ -170,16 +170,16 @@ FrLdrHeapFree(PVOID MemoryPointer, ULONG Tag)
|
||||||
FrLdrHeapFreeEx(FrLdrDefaultHeap, MemoryPointer, Tag);
|
FrLdrHeapFreeEx(FrLdrDefaultHeap, MemoryPointer, Tag);
|
||||||
}
|
}
|
||||||
|
|
||||||
PVOID
|
|
||||||
FORCEINLINE
|
FORCEINLINE
|
||||||
|
PVOID
|
||||||
FrLdrTempAlloc(
|
FrLdrTempAlloc(
|
||||||
ULONG Size, ULONG Tag)
|
ULONG Size, ULONG Tag)
|
||||||
{
|
{
|
||||||
return FrLdrHeapAllocateEx(FrLdrTempHeap, Size, Tag);
|
return FrLdrHeapAllocateEx(FrLdrTempHeap, Size, Tag);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID
|
|
||||||
FORCEINLINE
|
FORCEINLINE
|
||||||
|
VOID
|
||||||
FrLdrTempFree(
|
FrLdrTempFree(
|
||||||
PVOID Allocation, ULONG Tag)
|
PVOID Allocation, ULONG Tag)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue