Changeset 2323 for trunk/src/emx/include/fts.h
- Timestamp:
- Sep 25, 2005, 1:01:36 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/fts.h
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r2322 r2323 49 49 dev_t fts_dev; /* starting device # */ 50 50 char *fts_path; /* path for this descent */ 51 #ifdef __EMX__52 char *fts_rdir; /* path of root */53 #else54 51 int fts_rfd; /* fd for root */ 55 #endif56 52 int fts_pathlen; /* sizeof(path) */ 57 53 int fts_nitems; /* elements in the sort array */ … … 66 62 #define FTS_SEEDOT 0x020 /* return dot and dot-dot */ 67 63 #define FTS_XDEV 0x040 /* don't cross devices */ 68 #ifndef __EMX__69 64 #define FTS_WHITEOUT 0x080 /* return whiteout information */ 70 #endif71 65 #define FTS_OPTIONMASK 0x0ff /* valid user option mask */ 72 66 … … 86 80 char *fts_path; /* root path */ 87 81 int fts_errno; /* errno for this node */ 88 #ifndef __EMX__89 82 int fts_symfd; /* fd for symlink */ 90 #endif91 83 u_short fts_pathlen; /* strlen(fts_path) */ 92 84 u_short fts_namelen; /* strlen(fts_name) */ … … 113 105 #define FTS_SL 12 /* symbolic link */ 114 106 #define FTS_SLNONE 13 /* symbolic link without target */ 115 #ifndef __EMX__116 107 #define FTS_W 14 /* whiteout object */ 117 #endif118 108 u_short fts_info; /* user flags for FTSENT structure */ 119 109 120 110 #define FTS_DONTCHDIR 0x01 /* don't chdir .. to the parent */ 121 111 #define FTS_SYMFOLLOW 0x02 /* followed a symlink to get here */ 122 #ifndef __EMX__123 112 #define FTS_ISW 0x04 /* this is a whiteout object */ 124 #endif125 113 u_short fts_flags; /* private flags for FTSENT structure */ 126 114 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.