Add libsupp.h for rtl's Kernel Allocation functions Added: trunk/reactos/lib/rtl/libsupp.h _____
Added: trunk/reactos/lib/rtl/libsupp.h --- trunk/reactos/lib/rtl/libsupp.h 2005-06-19 21:35:57 UTC (rev 16115) +++ trunk/reactos/lib/rtl/libsupp.h 2005-06-19 21:37:01 UTC (rev 16116) @@ -0,0 +1,29 @@
+/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS System Libraries + * FILE: lib/rtl/libsupp.h + * PURPOSE: Run-Time Library Kernel Support Header + * PROGRAMMER: Alex Ionescu + */ + +/* INCLUDES ******************************************************************/ + +#define TAG_RTL TAG('R','t', 'l', ' ') + +PVOID +STDCALL +ExAllocatePoolWithTag( + IN POOL_TYPE PoolType, + IN SIZE_T NumberOfBytes, + IN ULONG Tag +); + +VOID +STDCALL +ExFreePool( + IN PVOID Pool +); + +#define ExAllocatePool(p,n) ExAllocatePoolWithTag(p,n, TAG_RTL) + +/* EOF */