mirror of
https://github.com/reactos/reactos.git
synced 2025-05-16 15:50:24 +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:
parent
c3c85103f2
commit
ce76daabd9
2 changed files with 10 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue