mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 07:52:56 +00:00
[FREELDR]
* Add a ExFreePoolWithTag stub and forward it to ExFreePool. Fixes freeldr msvc build. svn path=/trunk/; revision=52154
This commit is contained in:
parent
0944b73b87
commit
cad02800db
1 changed files with 11 additions and 0 deletions
|
@ -371,6 +371,17 @@ ExFreePool(
|
||||||
MmHeapFree(P);
|
MmHeapFree(P);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#undef ExFreePoolWithTag
|
||||||
|
NTKERNELAPI
|
||||||
|
VOID
|
||||||
|
NTAPI
|
||||||
|
ExFreePoolWithTag(
|
||||||
|
IN PVOID P,
|
||||||
|
IN ULONG Tag)
|
||||||
|
{
|
||||||
|
ExFreePool(P);
|
||||||
|
}
|
||||||
|
|
||||||
PVOID
|
PVOID
|
||||||
NTAPI
|
NTAPI
|
||||||
RtlAllocateHeap(
|
RtlAllocateHeap(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue