From 303680ebcd5adaac2934b63a0edc2d9d1a36d7fb Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Wed, 12 Feb 2020 02:22:31 +0100 Subject: 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 --- include/sqfs/block_writer.h | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'include/sqfs/block_writer.h') diff --git a/include/sqfs/block_writer.h b/include/sqfs/block_writer.h index e921141..bd1ddfc 100644 --- a/include/sqfs/block_writer.h +++ b/include/sqfs/block_writer.h @@ -31,6 +31,8 @@ /** * @struct sqfs_block_writer_t * + * @implements sqfs_object_t + * * @brief Abstracts writing and deduplicating of data and fragment blocks. */ @@ -189,15 +191,6 @@ SQFS_API int sqfs_block_writer_set_hooks(sqfs_block_writer_t *wr, void *user_ptr, const sqfs_block_hooks_t *hooks); -/** - * @brief Destroy a block writer object. - * - * @memberof sqfs_block_writer_t - * - * @param wr A pointer to a block writer object. - */ -SQFS_API void sqfs_block_writer_destroy(sqfs_block_writer_t *wr); - /** * @brief Submit a data block to a blokc writer. * -- cgit v1.2.3