mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[NTFS]
Implement NtfsFCBIsReparsePoint() which returns true in case current FCB is a reparse point svn path=/trunk/; revision=65579
This commit is contained in:
@@ -124,6 +124,13 @@ NtfsFCBIsDirectory(PNTFS_FCB Fcb)
|
||||
}
|
||||
|
||||
|
||||
BOOLEAN
|
||||
NtfsFCBIsReparsePoint(PNTFS_FCB Fcb)
|
||||
{
|
||||
return ((Fcb->Entry.FileAttributes & NTFS_FILE_TYPE_REPARSE) == NTFS_FILE_TYPE_REPARSE);
|
||||
}
|
||||
|
||||
|
||||
BOOLEAN
|
||||
NtfsFCBIsRoot(PNTFS_FCB Fcb)
|
||||
{
|
||||
|
||||
@@ -564,6 +564,9 @@ NtfsDestroyFCB(PNTFS_FCB Fcb);
|
||||
BOOLEAN
|
||||
NtfsFCBIsDirectory(PNTFS_FCB Fcb);
|
||||
|
||||
BOOLEAN
|
||||
NtfsFCBIsReparsePoint(PNTFS_FCB Fcb);
|
||||
|
||||
BOOLEAN
|
||||
NtfsFCBIsRoot(PNTFS_FCB Fcb);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user