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 int i_backlink;
10 unsigned char i_file_format;
11 };
12
13 #endif