mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Added declaration for MmAllocateContiguousAlignedMemory
svn path=/trunk/; revision=1762
This commit is contained in:
parent
a758924464
commit
57dfac271e
1 changed files with 7 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
#ifndef _INCLUDE_DDK_MMFUNCS_H
|
#ifndef _INCLUDE_DDK_MMFUNCS_H
|
||||||
#define _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 ******************************************************/
|
/* MEMORY MANAGMENT ******************************************************/
|
||||||
|
|
||||||
#include <ddk/i386/pagesize.h>
|
#include <ddk/i386/pagesize.h>
|
||||||
|
@ -81,6 +81,12 @@ MmAllocateContiguousMemory (
|
||||||
IN ULONG NumberOfBytes,
|
IN ULONG NumberOfBytes,
|
||||||
IN PHYSICAL_ADDRESS HighestAcceptableAddress
|
IN PHYSICAL_ADDRESS HighestAcceptableAddress
|
||||||
);
|
);
|
||||||
|
|
||||||
|
PVOID STDCALL
|
||||||
|
MmAllocateContiguousAlignedMemory(IN ULONG NumberOfBytes,
|
||||||
|
IN PHYSICAL_ADDRESS HighestAcceptableAddress,
|
||||||
|
IN ULONG Alignment);
|
||||||
|
|
||||||
PVOID
|
PVOID
|
||||||
STDCALL
|
STDCALL
|
||||||
MmAllocateNonCachedMemory (
|
MmAllocateNonCachedMemory (
|
||||||
|
|
Loading…
Reference in a new issue