dont include i386 headers in arm mmu manager headers.

svn path=/trunk/; revision=34975
This commit is contained in:
ReactOS Portable Systems Group 2008-07-31 07:07:00 +00:00
parent 6abcb17d2a
commit e1d4f7bdf2
2 changed files with 7 additions and 0 deletions

View file

@ -166,4 +166,7 @@ typedef enum _ARM_DOMAIN
#define PDE_BASE 0xC1000000
#define HYPER_SPACE 0xC1100000
struct _EPROCESS;
PULONG MmGetPageDirectory(VOID);
#endif

View file

@ -5,6 +5,8 @@
#ifndef __NTOSKRNL_INCLUDE_INTERNAL_I386_MM_H
#define __NTOSKRNL_INCLUDE_INTERNAL_I386_MM_H
#ifdef _M_IX86
struct _EPROCESS;
PULONG MmGetPageDirectory(VOID);
@ -28,4 +30,6 @@ PULONG MmGetPageDirectory(VOID);
/* Easy accessing PFN in PTE */
#define PFN_FROM_PTE(v) ((v)->u.Hard.PageFrameNumber)
#endif
#endif /* __NTOSKRNL_INCLUDE_INTERNAL_I386_MM_H */