mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 04:13:35 +00:00
Add libsupp.h for rtl's Kernel Allocation functions
svn path=/trunk/; revision=16116
This commit is contained in:
@@ -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 */
|
||||
Reference in New Issue
Block a user