mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
dont include i386 headers in arm mmu manager headers.
svn path=/trunk/; revision=34975
This commit is contained in:
parent
6abcb17d2a
commit
e1d4f7bdf2
2 changed files with 7 additions and 0 deletions
|
@ -166,4 +166,7 @@ typedef enum _ARM_DOMAIN
|
|||
#define PDE_BASE 0xC1000000
|
||||
#define HYPER_SPACE 0xC1100000
|
||||
|
||||
struct _EPROCESS;
|
||||
PULONG MmGetPageDirectory(VOID);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue