aboutsummaryrefslogtreecommitdiff
path: root/include/sqfs/xattr_writer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sqfs/xattr_writer.h')
-rw-r--r--include/sqfs/xattr_writer.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/sqfs/xattr_writer.h b/include/sqfs/xattr_writer.h
index 5b18659..b25215e 100644
--- a/include/sqfs/xattr_writer.h
+++ b/include/sqfs/xattr_writer.h
@@ -31,6 +31,8 @@
/**
* @struct sqfs_xattr_writer_t
*
+ * @implements sqfs_object_t
+ *
* @brief Abstracts writing of extended attributes to a SquashFS filesystem.
*
* This data structure provides a simple, abstract interface to recording
@@ -64,15 +66,6 @@ extern "C" {
SQFS_API sqfs_xattr_writer_t *sqfs_xattr_writer_create(void);
/**
- * @brief Destroy an xattr writer instance and free all memory it used.
- *
- * @memberof sqfs_xattr_writer_t
- *
- * @param xwr A pointer to an xattr writer instance.
- */
-SQFS_API void sqfs_xattr_writer_destroy(sqfs_xattr_writer_t *xwr);
-
-/**
* @brief Begin recording a block of key-value pairs.
*
* @memberof sqfs_xattr_writer_t