mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[NTOS] Add in MmDoesFileHaveUserWritableReferences, seemingly new to 2k3 SP2. MSDN reports this as "Vista and later" but this is not entirely correct it seems.
svn path=/trunk/; revision=69130
This commit is contained in:
parent
2425661867
commit
ee039d524e
2 changed files with 9 additions and 0 deletions
|
@ -3155,6 +3155,14 @@ MiDeleteARM3Section(PVOID ObjectBody)
|
||||||
MiCheckControlArea(ControlArea, OldIrql);
|
MiCheckControlArea(ControlArea, OldIrql);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ULONG
|
||||||
|
NTAPI
|
||||||
|
MmDoesFileHaveUserWritableReferences(IN PSECTION_OBJECT_POINTERS SectionPointer)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* SYSTEM CALLS ***************************************************************/
|
/* SYSTEM CALLS ***************************************************************/
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
|
|
@ -766,6 +766,7 @@
|
||||||
@ stdcall MmCreateMirror()
|
@ stdcall MmCreateMirror()
|
||||||
@ stdcall MmCreateSection(ptr long ptr ptr long long ptr ptr)
|
@ stdcall MmCreateSection(ptr long ptr ptr long long ptr ptr)
|
||||||
@ stdcall MmDisableModifiedWriteOfSection(long)
|
@ stdcall MmDisableModifiedWriteOfSection(long)
|
||||||
|
@ stdcall MmDoesFileHaveUserWritableReferences(ptr)
|
||||||
@ stdcall MmFlushImageSection(ptr long)
|
@ stdcall MmFlushImageSection(ptr long)
|
||||||
@ stdcall MmForceSectionClosed(ptr long)
|
@ stdcall MmForceSectionClosed(ptr long)
|
||||||
@ stdcall MmFreeContiguousMemory(ptr)
|
@ stdcall MmFreeContiguousMemory(ptr)
|
||||||
|
|
Loading…
Reference in a new issue