mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
Fix parameters of ExAllocatePoolWithQuota and ExAllocatePoolWithQuotaTag
svn path=/trunk/; revision=43561
This commit is contained in:
parent
c3565096d4
commit
125296305f
1 changed files with 2 additions and 2 deletions
|
@ -662,7 +662,7 @@ ExQueryPoolBlockSize(IN PVOID PoolBlock,
|
|||
PVOID
|
||||
NTAPI
|
||||
ExAllocatePoolWithQuota(IN POOL_TYPE PoolType,
|
||||
IN ULONG NumberOfBytes)
|
||||
IN SIZE_T NumberOfBytes)
|
||||
{
|
||||
//
|
||||
// Allocate the pool
|
||||
|
@ -693,7 +693,7 @@ ExAllocatePoolWithTagPriority(IN POOL_TYPE PoolType,
|
|||
PVOID
|
||||
NTAPI
|
||||
ExAllocatePoolWithQuotaTag(IN POOL_TYPE PoolType,
|
||||
IN ULONG NumberOfBytes,
|
||||
IN SIZE_T NumberOfBytes,
|
||||
IN ULONG Tag)
|
||||
{
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue