diff options
-rw-r--r-- | bin/gensquashfs/src/mkfs.h | 9 | ||||
-rw-r--r-- | include/fstree.h | 9 |
2 files changed, 9 insertions, 9 deletions
diff --git a/bin/gensquashfs/src/mkfs.h b/bin/gensquashfs/src/mkfs.h index 53fb018..671c3cb 100644 --- a/bin/gensquashfs/src/mkfs.h +++ b/bin/gensquashfs/src/mkfs.h @@ -41,6 +41,15 @@ #include <errno.h> #include <ctype.h> +/* + Optionally used by fstree_from_dir and fstree_from_subdir to + execute custom actions for each discovered node. + + If it returns a value > 0, the new node is discarded, if < 0, scanning is + aborted and returns a failure status. + */ +typedef int (*scan_node_callback)(void *user, fstree_t *fs, tree_node_t *node); + typedef struct { sqfs_writer_cfg_t cfg; unsigned int dirscan_flags; diff --git a/include/fstree.h b/include/fstree.h index 653e180..8d5e499 100644 --- a/include/fstree.h +++ b/include/fstree.h @@ -46,15 +46,6 @@ typedef struct fstree_t fstree_t; #define container_of(ptr, type, member) \ ((type *)((char *)ptr - offsetof(type, member))) -/* - Optionally used by fstree_from_dir and fstree_from_subdir to - execute custom actions for each discovered node. - - If it returns a value > 0, the new node is discarded, if < 0, scanning is - aborted and returns a failure status. - */ -typedef int (*scan_node_callback)(void *user, fstree_t *fs, tree_node_t *node); - /* Additional meta data stored in a tree_node_t for regular files. */ struct file_info_t { /* Linked list pointer for files in fstree_t */ |