[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:
Stefan Ginsberg 2015-09-08 20:42:21 +00:00
parent 2425661867
commit ee039d524e
2 changed files with 9 additions and 0 deletions

View file

@ -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

View file

@ -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)