From 2694532a5479d157903b6c600d9b1d5c145a4e4c Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Mon, 12 Jun 2023 19:40:41 +0200 Subject: libio: replace OSTREAM_OPEN_* flags with SQFS_FILE_OPEN_* flags Signed-off-by: David Oberhollenzer --- include/sqfs/io.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'include/sqfs') diff --git a/include/sqfs/io.h b/include/sqfs/io.h index 4cdb574..a1fb169 100644 --- a/include/sqfs/io.h +++ b/include/sqfs/io.h @@ -76,7 +76,14 @@ typedef enum { */ SQFS_FILE_OPEN_NO_CHARSET_XFRM = 0x04, - SQFS_FILE_OPEN_ALL_FLAGS = 0x07, + /** + * @brief Do not use sparse file I/O APIs, always fill in zero bytes + * + * This flag currently has no effect on @ref sqfs_open_file. + */ + SQFS_FILE_OPEN_NO_SPARSE = 0x08, + + SQFS_FILE_OPEN_ALL_FLAGS = 0x0F, } SQFS_FILE_OPEN_FLAGS; /** -- cgit v1.2.3