diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-05-29 19:44:09 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-05-29 19:56:59 +0200 |
commit | 2ff34144df4ce521bfb789a61e24a05aea39b220 (patch) | |
tree | 54c7c1818d758de90e4c34c8f9b9c39ea301824b /include/sqfs/block.h | |
parent | 577aae140e05f2b7cd140926443517260c0132b7 (diff) |
Block processor: Add a raw block submission function
This function allows submission of raw blocks to the block processor,
completely bypassing the file API.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/sqfs/block.h')
-rw-r--r-- | include/sqfs/block.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sqfs/block.h b/include/sqfs/block.h index 582f128..30f181c 100644 --- a/include/sqfs/block.h +++ b/include/sqfs/block.h @@ -149,6 +149,8 @@ typedef enum { * @brief The combination of all flags that are user settable. */ SQFS_BLK_USER_SETTABLE_FLAGS = 0x003F, + + SQFS_BLK_FLAGS_ALL = 0xFC3F, } SQFS_BLK_FLAGS; #endif /* SQFS_BLOCK_H */ |