mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Add free to libsupp
svn path=/trunk/; revision=16119
This commit is contained in:
parent
d3e93a6629
commit
1754d20379
1 changed files with 4 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue