Add free to libsupp

svn path=/trunk/; revision=16119
This commit is contained in:
Alex Ionescu 2005-06-19 21:50:05 +00:00
parent d3e93a6629
commit 1754d20379

View file

@ -20,10 +20,12 @@ ExAllocatePoolWithTag(
VOID
STDCALL
ExFreePool(
IN PVOID Pool
ExFreePoolWithTag(
IN PVOID Pool,
IN ULONG Tag
);
#define ExAllocatePool(p,n) ExAllocatePoolWithTag(p,n, TAG_RTL)
#define ExFreePool(P) ExFreePoolWithTag(P, TAG_RTL)
/* EOF */