http://downloads.netgear.com/files/GPL/GPL_Source_V361j_DM111PSP_series_consumer_rele...
[bcm963xx.git] / hostTools / squashfs / squashfs_fs_i.h
1 #ifndef SQUASHFS_FS_I
2 #define SQUASHFS_FS_I
3 /*
4  * Squashfs
5  *
6  * Copyright (c) 2002, 2003, 2004 Phillip Lougher <plougher@users.sourceforge.net>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2,
11  * or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21  *
22  * squashfs_fs_i.h
23  */
24
25 typedef struct squashfs_inode_info {
26         unsigned int    start_block;
27         unsigned int    block_list_start;
28         unsigned int    offset;
29         unsigned int    fragment_start_block;
30         unsigned int    fragment_size;
31         unsigned int    fragment_offset;
32         struct inode    vfs_inode;
33         } squashfs_inode_info;
34 #endif