mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 17:52:56 +00:00
Added Ex Stub
svn path=/trunk/; revision=9848
This commit is contained in:
parent
7f48bb36d7
commit
5dc4ab6ba9
1 changed files with 29 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: pool.c,v 1.28 2004/04/10 22:35:25 gdalsnes Exp $
|
/* $Id: pool.c,v 1.29 2004/06/23 21:50:59 ion Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -146,7 +146,20 @@ ExAllocatePoolWithQuota (POOL_TYPE PoolType, ULONG NumberOfBytes)
|
||||||
return(ExAllocatePoolWithQuotaTag(PoolType, NumberOfBytes, TAG_NONE));
|
return(ExAllocatePoolWithQuotaTag(PoolType, NumberOfBytes, TAG_NONE));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
PVOID
|
||||||
|
STDCALL
|
||||||
|
ExAllocatePoolWithTagPriority(
|
||||||
|
IN POOL_TYPE PoolType,
|
||||||
|
IN SIZE_T NumberOfBytes,
|
||||||
|
IN ULONG Tag,
|
||||||
|
IN EX_POOL_PRIORITY Priority
|
||||||
|
)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
@ -195,6 +208,20 @@ ExFreePoolWithTag(IN PVOID Block, IN ULONG Tag)
|
||||||
ExFreePool(Block);
|
ExFreePool(Block);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
SIZE_T
|
||||||
|
STDCALL
|
||||||
|
ExQueryPoolBlockSize (
|
||||||
|
IN PVOID PoolBlock,
|
||||||
|
OUT PBOOLEAN QuotaCharged
|
||||||
|
)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue