Add free to libsupp Modified: trunk/reactos/lib/rtl/libsupp.h _____
Modified: trunk/reactos/lib/rtl/libsupp.h --- trunk/reactos/lib/rtl/libsupp.h 2005-06-19 21:40:29 UTC (rev 16118) +++ trunk/reactos/lib/rtl/libsupp.h 2005-06-19 21:50:05 UTC (rev 16119) @@ -20,10 +20,12 @@
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 */