aboutsummaryrefslogtreecommitdiff
path: root/include/sqfs/data_reader.h
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-02-12 02:22:31 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-02-12 02:26:24 +0100
commit303680ebcd5adaac2934b63a0edc2d9d1a36d7fb (patch)
treebd2012dc6fa56f7259dbe2e5edd7ab3042f8e0a0 /include/sqfs/data_reader.h
parentec7a522a520017327dd73b4d8e3787016ee1a31e (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/data_reader.h')
-rw-r--r--include/sqfs/data_reader.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/sqfs/data_reader.h b/include/sqfs/data_reader.h
index 0c4918c..e058017 100644
--- a/include/sqfs/data_reader.h
+++ b/include/sqfs/data_reader.h
@@ -31,6 +31,8 @@
/**
* @struct sqfs_data_reader_t
*
+ * @implements sqfs_object_t
+ *
* @brief Abstracts access to data blocks stored in a SquashFS image.
*
* A SquashFS image can contain a series of file data blocks between the
@@ -69,15 +71,6 @@ SQFS_API sqfs_data_reader_t *sqfs_data_reader_create(sqfs_file_t *file,
sqfs_compressor_t *cmp);
/**
- * @brief Destroy a data reader instance and free all memory used by it.
- *
- * @memberof sqfs_data_reader_t
- *
- * @param data A pointer to a data reader object.
- */
-SQFS_API void sqfs_data_reader_destroy(sqfs_data_reader_t *data);
-
-/**
* @brief Read and decode the fragment table from disk.
*
* @memberof sqfs_data_reader_t