diff options
Diffstat (limited to 'include/fstree.h')
-rw-r--r-- | include/fstree.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/fstree.h b/include/fstree.h index 4c02ce5..880a870 100644 --- a/include/fstree.h +++ b/include/fstree.h @@ -16,6 +16,8 @@ #include <stddef.h> #include <stdio.h> +#include "sqfs/inode.h" + #include "str_table.h" #define FSTREE_XATTR_KEY_BUCKETS 31 @@ -105,12 +107,6 @@ struct dir_info_t { directory meta data to disk. */ uint64_t size; - /* Start block offset, relative to directory table start. */ - uint64_t start_block; - - /* Byte offset into the uncompressed meta data block. */ - uint32_t block_offset; - /* Set to true for implicitly generated directories. */ bool created_implicitly; }; @@ -126,6 +122,8 @@ struct tree_node_t { /* For the root node, this points to an empty string. */ char *name; + sqfs_inode_generic_t *inode; + /* A pointer to an extended attribute array or NULL if unused. |