mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 12:23:29 +00:00
[NTOSKRNL]
- Renamed MmIsFileAPagingFile() to MmIsFileObjectAPagingFile() its appropriated name - Added it to internal headers - Implemented FsRtlIsPagingFile() svn path=/trunk/; revision=49712
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
|
||||
/*++
|
||||
* @name FsRtlIsPagingFile
|
||||
* @implemented NT 4.0
|
||||
* @implemented NT 5.2
|
||||
*
|
||||
* The FsRtlIsPagingFile routine checks if the FileObject is a Paging File.
|
||||
*
|
||||
@@ -32,8 +32,7 @@ LOGICAL
|
||||
NTAPI
|
||||
FsRtlIsPagingFile(IN PFILE_OBJECT FileObject)
|
||||
{
|
||||
KeBugCheck(FILE_SYSTEM);
|
||||
return FALSE;
|
||||
return MmIsFileObjectAPagingFile(FileObject);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -778,6 +778,10 @@ VOID
|
||||
NTAPI
|
||||
MmInitPagingFile(VOID);
|
||||
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
MmIsFileObjectAPagingFile(PFILE_OBJECT FileObject);
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
MmReadFromSwapPage(
|
||||
|
||||
@@ -132,7 +132,7 @@ MmBuildMdlFromPages(PMDL Mdl, PPFN_NUMBER Pages)
|
||||
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
MmIsFileAPagingFile(PFILE_OBJECT FileObject)
|
||||
MmIsFileObjectAPagingFile(PFILE_OBJECT FileObject)
|
||||
{
|
||||
ULONG i;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user