From 5dc4ab6ba966df4e49c8f217ba2870f513617d79 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Wed, 23 Jun 2004 21:50:59 +0000 Subject: [PATCH] Added Ex Stub svn path=/trunk/; revision=9848 --- reactos/ntoskrnl/mm/pool.c | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/mm/pool.c b/reactos/ntoskrnl/mm/pool.c index c1c682baea1..e26bcde483d 100644 --- a/reactos/ntoskrnl/mm/pool.c +++ b/reactos/ntoskrnl/mm/pool.c @@ -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 * PROJECT: ReactOS kernel @@ -146,7 +146,20 @@ ExAllocatePoolWithQuota (POOL_TYPE PoolType, ULONG NumberOfBytes) 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 */ @@ -195,6 +208,20 @@ ExFreePoolWithTag(IN PVOID Block, IN ULONG Tag) ExFreePool(Block); } +/* + * @unimplemented + */ +SIZE_T +STDCALL +ExQueryPoolBlockSize ( + IN PVOID PoolBlock, + OUT PBOOLEAN QuotaCharged + ) +{ + UNIMPLEMENTED; + return FALSE; +} + /* EOF */