mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
- Fix ARM exports to make up for the recent i386 changes.
- Implement MmGetPageProtect. MDL Probe And Lock now works. - We get to RamdiskReadWrite now! svn path=/trunk/; revision=34623
This commit is contained in:
parent
63c51607f5
commit
9a54151f86
2 changed files with 3 additions and 4 deletions
|
@ -642,10 +642,9 @@ MmGetPageProtect(IN PEPROCESS Process,
|
|||
IN PVOID Address)
|
||||
{
|
||||
//
|
||||
// TODO
|
||||
// We don't enforce any protection on the pages -- they are all RWX
|
||||
//
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
return PAGE_READWRITE;
|
||||
}
|
||||
|
||||
VOID
|
||||
|
|
|
@ -746,7 +746,7 @@ NlsLeadByteInfo DATA
|
|||
NlsMbCodePageTag DATA
|
||||
NlsMbOemCodePageTag DATA
|
||||
NlsOemCodePage DATA
|
||||
NlsOemLeadByteInfo DATA
|
||||
NlsOemLeadByteInfo=_NlsOemLeadByteInfo
|
||||
NtAddAtom
|
||||
NtAdjustPrivilegesToken
|
||||
NtAlertThread
|
||||
|
|
Loading…
Reference in a new issue