From b4c822960aaf5b4349895cc480e959b502f6855e Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Mon, 20 Jan 2020 21:29:17 +0100 Subject: Add a flag field to the id table create function Just to be safe in case there needs to be an extension in the future. Signed-off-by: David Oberhollenzer --- include/sqfs/id_table.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/sqfs/id_table.h') diff --git a/include/sqfs/id_table.h b/include/sqfs/id_table.h index a280250..67990db 100644 --- a/include/sqfs/id_table.h +++ b/include/sqfs/id_table.h @@ -50,9 +50,11 @@ extern "C" { * * @memberof sqfs_id_table_t * + * @param flags Currently must be set to 0 or creating the table fails. + * * @return A pointer to an ID table object, NULL on allocation failure. */ -SQFS_API sqfs_id_table_t *sqfs_id_table_create(void); +SQFS_API sqfs_id_table_t *sqfs_id_table_create(sqfs_u32 flags); /** * @brief Destroy an ID table object and free all memory used by it. -- cgit v1.2.3