1 #ifndef _ISO_FS_I
2 #define _ISO_FS_I
3
4 /*
5 * iso fs inode data in memory
6 */
7 struct iso_inode_info {
8 unsigned int i_first_extent;
9 unsigned char i_file_format;
10 unsigned long i_next_section_ino;
11 off_t i_section_size;
12 };
13
14 #endif
15