summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-26 18:57:50 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-26 18:57:50 +0200
commitfa66e0d92d1441ab95d720728f1fb54177d5edd5 (patch)
treeb975ea41a1b85c16a7c70e2bb45e993e91cf6ff9 /include
parent9ed84dac57944149e05646960a715d8f98dabcc5 (diff)
Remove the create I/O block from sqfs_file_t function
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r--include/sqfs/io.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/sqfs/io.h b/include/sqfs/io.h
index 5c1bfd5..0f980d6 100644
--- a/include/sqfs/io.h
+++ b/include/sqfs/io.h
@@ -142,25 +142,6 @@ extern "C" {
*/
SQFS_API sqfs_file_t *sqfs_open_file(const char *filename, int flags);
-/**
- * @brief Read a chunk from a file and turn it into a block that can be
- * fed to a block processor.
- *
- * @member sqfs_file_t
- *
- * @param file A pointer to a file implementation.
- * @param offset A byte offset into the file.
- * @param size The number of bytes to read, starting at the given offset.
- * @param inode The inode pointer to set for the block.
- * @param flags The flags to store in the newly created block.
- * @param out Returns a pointer to a block on success.
- *
- * @return Zero on success, an @ref E_SQFS_ERROR identifier on failure.
- */
-SQFS_API int sqfs_file_create_block(sqfs_file_t *file, uint64_t offset,
- size_t size, sqfs_inode_generic_t *inode,
- uint32_t flags, sqfs_block_t **out);
-
#ifdef __cplusplus
}
#endif