mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 09:25:44 +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);
|
||||
}
|
||||
|
||||
#undef ExFreePoolWithTag
|
||||
NTKERNELAPI
|
||||
VOID
|
||||
NTAPI
|
||||
ExFreePoolWithTag(
|
||||
IN PVOID P,
|
||||
IN ULONG Tag)
|
||||
{
|
||||
ExFreePool(P);
|
||||
}
|
||||
|
||||
PVOID
|
||||
NTAPI
|
||||
RtlAllocateHeap(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue