[FREELDR]

* Add a ExFreePoolWithTag stub and forward it to ExFreePool. Fixes freeldr msvc build.

svn path=/trunk/; revision=52154
This commit is contained in:
Amine Khaldi 2011-06-09 11:49:42 +00:00
parent 0944b73b87
commit cad02800db

View file

@ -371,6 +371,17 @@ ExFreePool(
MmHeapFree(P);
}
#undef ExFreePoolWithTag
NTKERNELAPI
VOID
NTAPI
ExFreePoolWithTag(
IN PVOID P,
IN ULONG Tag)
{
ExFreePool(P);
}
PVOID
NTAPI
RtlAllocateHeap(