Changeset 2309891 in mainline for uspace/lib/fmgt/include
- Timestamp:
- 2025-12-14T17:15:57Z (7 weeks ago)
- Branches:
- master
- Children:
- 79b77ce
- Parents:
- 144fafd
- Location:
- uspace/lib/fmgt/include
- Files:
-
- 1 added
- 2 edited
-
fmgt.h (modified) (2 diffs)
-
fmgt/copy.h (added)
-
types/fmgt.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/fmgt/include/fmgt.h
r144fafd r2309891 42 42 #include <stddef.h> 43 43 #include <stdint.h> 44 #include "fmgt/copy.h" 44 45 #include "fmgt/flist.h" 45 46 #include "fmgt/newfile.h" … … 52 53 extern void fmgt_destroy(fmgt_t *); 53 54 extern void fmgt_set_init_update(fmgt_t *, bool); 55 extern const char *fmgt_basename(const char *); 56 extern bool fmgt_is_dir(const char *); 54 57 55 58 #endif -
uspace/lib/fmgt/include/types/fmgt.h
r144fafd r2309891 140 140 /** File system tree walk callbacks */ 141 141 typedef struct { 142 errno_t (*dir_enter)(void *, const char * );143 errno_t (*dir_leave)(void *, const char * );144 errno_t (*file)(void *, const char * );142 errno_t (*dir_enter)(void *, const char *, const char *); 143 errno_t (*dir_leave)(void *, const char *, const char *); 144 errno_t (*file)(void *, const char *, const char *); 145 145 } fmgt_walk_cb_t; 146 146 … … 149 149 /** List of files or directories (walk roots) */ 150 150 fmgt_flist_t *flist; 151 /** Destination path */ 152 const char *dest; 153 /** Copy files into destination directory. */ 154 bool into_dest; 151 155 /** Callbacks */ 152 156 fmgt_walk_cb_t *cb;
Note:
See TracChangeset
for help on using the changeset viewer.
