mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 15:11:41 +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
|
BOOLEAN
|
||||||
NtfsFCBIsRoot(PNTFS_FCB Fcb)
|
NtfsFCBIsRoot(PNTFS_FCB Fcb)
|
||||||
{
|
{
|
||||||
|
|
|
@ -564,6 +564,9 @@ NtfsDestroyFCB(PNTFS_FCB Fcb);
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
NtfsFCBIsDirectory(PNTFS_FCB Fcb);
|
NtfsFCBIsDirectory(PNTFS_FCB Fcb);
|
||||||
|
|
||||||
|
BOOLEAN
|
||||||
|
NtfsFCBIsReparsePoint(PNTFS_FCB Fcb);
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
NtfsFCBIsRoot(PNTFS_FCB Fcb);
|
NtfsFCBIsRoot(PNTFS_FCB Fcb);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue