diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-02-12 02:22:31 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-02-12 02:26:24 +0100 |
commit | 303680ebcd5adaac2934b63a0edc2d9d1a36d7fb (patch) | |
tree | bd2012dc6fa56f7259dbe2e5edd7ab3042f8e0a0 /include/sqfs/id_table.h | |
parent | ec7a522a520017327dd73b4d8e3787016ee1a31e (diff) |
Implement a more explicit object system
Make every dynamically allocated, opaque data structure inherit from
a common sqfs_object_t structure with common entry points (e.g. destroy).
This removes tons of public API functions and replaces them with a
simple sqfs_destroy instead. If semantics of the (until now implicit)
object system need to be extended, it can be much more conveniantely
done this way.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/sqfs/id_table.h')
-rw-r--r-- | include/sqfs/id_table.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/include/sqfs/id_table.h b/include/sqfs/id_table.h index 67990db..706687f 100644 --- a/include/sqfs/id_table.h +++ b/include/sqfs/id_table.h @@ -31,6 +31,8 @@ /** * @struct sqfs_id_table_t * + * @implements sqfs_object_t + * * @brief A simple data structure that encapsulates ID to index mapping for * user and group IDs. * @@ -57,15 +59,6 @@ extern "C" { SQFS_API sqfs_id_table_t *sqfs_id_table_create(sqfs_u32 flags); /** - * @brief Destroy an ID table object and free all memory used by it. - * - * @memberof sqfs_id_table_t - * - * @param tbl A pointer to an ID table object. - */ -SQFS_API void sqfs_id_table_destroy(sqfs_id_table_t *tbl); - -/** * @brief Resolve a 32 bit ID to a unique 16 bit index. * * @memberof sqfs_id_table_t |