sys,dll: rename VolumeParams::ReparsePoints* fields

This commit is contained in:
Bill Zissimopoulos
2016-08-21 23:36:09 -07:00
parent 1298dd842d
commit fee75590a8
6 changed files with 15 additions and 15 deletions

View File

@ -127,8 +127,8 @@ typedef struct
UINT32 UnicodeOnDisk:1; /* file system supports Unicode in file names */
UINT32 PersistentAcls:1; /* file system preserves and enforces access control lists */
UINT32 ReparsePoints:1; /* file system supports reparse points */
UINT32 ReparsePointsPrivilegeCheck:1; /* file system performs reparse point privilege checks */
UINT32 ReparsePointsSymbolicLinks:1; /* file system supports only symbolic link reparse points */
UINT32 ReparsePointsAccessCheck:1; /* file system performs reparse point access checks */
UINT32 ReparsePointsSymlinkOnly:1; /* file system supports only symbolic link reparse points */
UINT32 NamedStreams:1; /* file system supports named streams (!!!: unimplemented) */
UINT32 HardLinks:1; /* unimplemented; set to 0 */
UINT32 ExtendedAttributes:1; /* unimplemented; set to 0 */

View File

@ -702,10 +702,10 @@ typedef struct _FSP_FILE_SYSTEM_INTERFACE
* Get reparse point.
*
* The behavior of this function depends on the value of FSP_FSCTL_VOLUME_PARAMS ::
* ReparsePointsSymbolicLinksOnly. If the value of ReparsePointsSymbolicLinksOnly
* ReparsePointsSymlinkOnly. If the value of ReparsePointsSymlinkOnly
* is FALSE the file system supports full reparse points and this function is expected
* to fill the buffer with a full reparse point. If the value of
* ReparsePointsSymbolicLinksOnly is TRUE the file system supports symbolic links only
* ReparsePointsSymlinkOnly is TRUE the file system supports symbolic links only
* as reparse points and this function is expected to fill the buffer with the symbolic
* link path.
*
@ -736,10 +736,10 @@ typedef struct _FSP_FILE_SYSTEM_INTERFACE
* Set reparse point.
*
* The behavior of this function depends on the value of FSP_FSCTL_VOLUME_PARAMS ::
* ReparsePointsSymbolicLinksOnly. If the value of ReparsePointsSymbolicLinksOnly
* ReparsePointsSymlinkOnly. If the value of ReparsePointsSymlinkOnly
* is FALSE the file system supports full reparse points and this function is expected
* to set the reparse point contained in the buffer. If the value of
* ReparsePointsSymbolicLinksOnly is TRUE the file system supports symbolic links only
* ReparsePointsSymlinkOnly is TRUE the file system supports symbolic links only
* as reparse points and this function is expected to set the symbolic link path contained
* in the buffer.
*
@ -797,7 +797,7 @@ typedef struct _FSP_FILE_SYSTEM
UINT32 DebugLog;
FSP_FILE_SYSTEM_OPERATION_GUARD_STRATEGY OpGuardStrategy;
SRWLOCK OpGuardLock;
UINT32 ReparsePointsSymbolicLinks:1;
UINT32 ReparsePointsSymlinkOnly:1;
} FSP_FILE_SYSTEM;
/**
* Create a file system object.