Changeset 3535 in kBuild for trunk/src/lib/nt/fts-nt.h
- Timestamp:
- Dec 20, 2021 11:32:28 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/nt/fts-nt.h
r3004 r3535 83 83 #define FTS_WHITEOUT 0x080 /* return whiteout information */ 84 84 #endif 85 #define FTS_CWDFD 0x100 /* For gnulib fts compatibility, enables fts_cwd_fd. */ 86 #define FTS_TIGHT_CYCLE_CHECK 0x200 /* Ignored currently */ 85 87 #define FTS_NO_ANSI 0x40000000 /* NT: No ansi name or access path. */ 86 #define FTS_OPTIONMASK 0x40000 0ff /* valid user option mask */88 #define FTS_OPTIONMASK 0x400003ff /* valid user option mask */ 87 89 88 #define FTS_NAMEONLY 0x100 /* (private) child names only */89 #define FTS_STOP 0x200 /* (private) unrecoverable error */90 #define FTS_NAMEONLY 0x10000 /* (private) child names only */ 91 #define FTS_STOP 0x20000 /* (private) unrecoverable error */ 90 92 int fts_options; /* fts_open options, global flags */ 93 int fts_cwd_fd; /* FTS_CWDFD: AT_FDCWD or a virtual CWD file descriptor. */ 91 94 void *fts_clientptr; /* thunk for sort function */ 92 95 } FTS; … … 132 135 #define FTS_SL 12 /* symbolic link */ 133 136 #define FTS_SLNONE 13 /* symbolic link without target */ 134 //#define FTS_W 14 /* whiteout object */137 #define FTS_W 14 /* whiteout object */ 135 138 int fts_info; /* user status for FTSENT structure */ 136 139
Note:
See TracChangeset
for help on using the changeset viewer.