diff options
author | robi <robi> | 2011-12-16 20:10:38 +0000 |
---|---|---|
committer | robi <robi> | 2011-12-16 20:10:38 +0000 |
commit | be0c55229494231393ae0f122cac8d19753d6804 (patch) | |
tree | 2a24350baffbeab4b2896261d0c57e7cf6579c43 /src/block.h | |
parent | ae69498e24734878c5b4116bbef0801312fc9b7d (diff) |
BUG #018427: support for libext2fs 1.41.x and 1.42.x
Diffstat (limited to 'src/block.h')
-rw-r--r-- | src/block.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/block.h b/src/block.h index 97098c9..6436cb6 100644 --- a/src/block.h +++ b/src/block.h @@ -10,9 +10,9 @@ errcode_t local_block_iterate3(ext2_filsys fs, int flags, char *block_buf, int (*func)(ext2_filsys fs, - blk_t *blocknr, + blk64_t *blocknr, e2_blkcnt_t blockcnt, - blk_t ref_blk, + blk64_t ref_blk, int ref_offset, void *priv_data), void *priv_data); @@ -21,4 +21,10 @@ errcode_t local_block_iterate3(ext2_filsys fs, int read_block ( ext2_filsys, blk_t*, void* ); //read filesystem block +#ifdef EXT2_FLAG_64BITS +int read_block64 ( ext2_filsys, blk64_t*, void* ); //read filesystem block64 +#endif + #endif //BLOCK_H + + |