From 57dfac271ebb91dd4219059c981f98a1ca334b70 Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Sat, 31 Mar 2001 16:02:07 +0000 Subject: [PATCH] Added declaration for MmAllocateContiguousAlignedMemory svn path=/trunk/; revision=1762 --- reactos/include/ddk/mmfuncs.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/reactos/include/ddk/mmfuncs.h b/reactos/include/ddk/mmfuncs.h index d94ad55705d..15a758ad074 100644 --- a/reactos/include/ddk/mmfuncs.h +++ b/reactos/include/ddk/mmfuncs.h @@ -1,6 +1,6 @@ #ifndef _INCLUDE_DDK_MMFUNCS_H #define _INCLUDE_DDK_MMFUNCS_H -/* $Id: mmfuncs.h,v 1.8 2000/10/07 13:41:46 dwelch Exp $ */ +/* $Id: mmfuncs.h,v 1.9 2001/03/31 16:02:07 phreak Exp $ */ /* MEMORY MANAGMENT ******************************************************/ #include @@ -81,6 +81,12 @@ MmAllocateContiguousMemory ( IN ULONG NumberOfBytes, IN PHYSICAL_ADDRESS HighestAcceptableAddress ); + +PVOID STDCALL +MmAllocateContiguousAlignedMemory(IN ULONG NumberOfBytes, + IN PHYSICAL_ADDRESS HighestAcceptableAddress, + IN ULONG Alignment); + PVOID STDCALL MmAllocateNonCachedMemory (