[ros-diffs] [tkreuzer] 33338: ntifs.h: fix prototypes of PsChargePoolQuota, PsChargeProcessPoolQuota, PsReturnPoolQuota, ZwAllocateVirtualMemory and ZwFreeVirtualMemory

tkreuzer at svn.reactos.org tkreuzer at svn.reactos.org
Wed May 7 02:57:11 CEST 2008


Author: tkreuzer
Date: Tue May  6 19:57:10 2008
New Revision: 33338

URL: http://svn.reactos.org/svn/reactos?rev=33338&view=rev
Log:
ntifs.h: fix prototypes of PsChargePoolQuota, PsChargeProcessPoolQuota, PsReturnPoolQuota, ZwAllocateVirtualMemory and ZwFreeVirtualMemory

Modified:
    trunk/reactos/include/ddk/ntifs.h

Modified: trunk/reactos/include/ddk/ntifs.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/ntifs.h?rev=33338&r1=33337&r2=33338&view=diff
==============================================================================
--- trunk/reactos/include/ddk/ntifs.h [iso-8859-1] (original)
+++ trunk/reactos/include/ddk/ntifs.h [iso-8859-1] Tue May  6 19:57:10 2008
@@ -3738,7 +3738,7 @@
 PsChargePoolQuota (
     IN PEPROCESS    Process,
     IN POOL_TYPE    PoolType,
-    IN ULONG        Amount
+    IN SIZE_T       Amount
 );
 
 NTKERNELAPI
@@ -3747,7 +3747,7 @@
 PsChargeProcessPoolQuota (
     IN PEPROCESS    Process,
     IN POOL_TYPE    PoolType,
-    IN ULONG_PTR    Amount
+    IN SIZE_T       Amount
 );
 
 #define PsDereferenceImpersonationToken(T)  \
@@ -3856,7 +3856,7 @@
 PsReturnPoolQuota (
     IN PEPROCESS    Process,
     IN POOL_TYPE    PoolType,
-    IN ULONG        Amount
+    IN SIZE_T       Amount
 );
 
 NTKERNELAPI
@@ -4664,7 +4664,7 @@
     IN HANDLE       ProcessHandle,
     IN OUT PVOID    *BaseAddress,
     IN ULONG        ZeroBits,
-    IN OUT PULONG   RegionSize,
+    IN OUT PSIZE_T  RegionSize,
     IN ULONG        AllocationType,
     IN ULONG        Protect
 );
@@ -4912,7 +4912,7 @@
 ZwFreeVirtualMemory (
     IN HANDLE       ProcessHandle,
     IN OUT PVOID    *BaseAddress,
-    IN OUT PULONG   RegionSize,
+    IN OUT PSIZE_T  RegionSize,
     IN ULONG        FreeType
 );
 



More information about the Ros-diffs mailing list