From 50d17fc2a4cd82b91ff23e1fb67623b44a65a50a Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Tue, 10 Feb 2009 00:42:57 +0000 Subject: [PATCH] undef ExAllocatePoolWithQuota and ExAllocatePoolWithQuotaTag before implementing them as they can be defined by ddk headers. svn path=/trunk/; revision=39519 --- reactos/ntoskrnl/mm/pool.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/ntoskrnl/mm/pool.c b/reactos/ntoskrnl/mm/pool.c index d63c0cca96c..45409c3ebea 100644 --- a/reactos/ntoskrnl/mm/pool.c +++ b/reactos/ntoskrnl/mm/pool.c @@ -147,6 +147,7 @@ ExAllocatePoolWithTag (POOL_TYPE PoolType, ULONG NumberOfBytes, ULONG Tag) /* * @implemented */ +#undef ExAllocatePoolWithQuota PVOID NTAPI ExAllocatePoolWithQuota (POOL_TYPE PoolType, ULONG NumberOfBytes) { @@ -184,6 +185,7 @@ ExAllocatePoolWithTagPriority( /* * @implemented */ +#undef ExAllocatePoolWithQuotaTag PVOID NTAPI ExAllocatePoolWithQuotaTag (IN POOL_TYPE PoolType,