diff ffstools/tiffs-rd/struct.h @ 234:024042383a26

tiffs IVA: ls reports file sizes
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 26 Jan 2014 11:47:13 +0000
parents 5ceacdbd4490
children
line wrap: on
line diff
--- a/ffstools/tiffs-rd/struct.h	Sun Jan 26 10:54:42 2014 +0000
+++ b/ffstools/tiffs-rd/struct.h	Sun Jan 26 11:47:13 2014 +0000
@@ -23,6 +23,7 @@
 
 /* our own distilled info struct */
 struct inode_info {
+	int	ino;
 	/* info from the inode record */
 	int	type;
 	int	descend;
@@ -37,3 +38,10 @@
 	/* filled by misc */
 	u8	*byte_after_name;
 };
+
+/* chunk location and size info */
+struct chunkinfo {
+	u8	*start;
+	u8	*end;
+	size_t	len;
+};