RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / scripts / squashfs / global.h
blob2c45c4a453eb82a970b12ab4ab50f80a2994d04f
1 #ifndef GLOBAL_H
2 #define GLOBAL_H
4 /*
5 * Squashfs
7 * Copyright (c) 2002, 2003, 2004, 2005, 2006
8 * Phillip Lougher <phillip@lougher.org.uk>
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2,
13 * or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * global.h
27 typedef struct squashfs_super_block squashfs_super_block;
28 typedef struct squashfs_dir_index squashfs_dir_index;
29 typedef struct squashfs_base_inode_header squashfs_base_inode_header;
30 typedef struct squashfs_ipc_inode_header squashfs_ipc_inode_header;
31 typedef struct squashfs_dev_inode_header squashfs_dev_inode_header;
32 typedef struct squashfs_symlink_inode_header squashfs_symlink_inode_header;
33 typedef struct squashfs_reg_inode_header squashfs_reg_inode_header;
34 typedef struct squashfs_lreg_inode_header squashfs_lreg_inode_header;
35 typedef struct squashfs_dir_inode_header squashfs_dir_inode_header;
36 typedef struct squashfs_ldir_inode_header squashfs_ldir_inode_header;
37 typedef struct squashfs_dir_entry squashfs_dir_entry;
38 typedef struct squashfs_dir_header squashfs_dir_header;
39 typedef struct squashfs_fragment_entry squashfs_fragment_entry;
41 typedef union squashfs_inode_header squashfs_inode_header;
42 typedef unsigned int squashfs_uid;
43 typedef long long squashfs_fragment_index;
44 typedef squashfs_inode_t squashfs_inode;
45 typedef squashfs_block_t squashfs_block;
46 #endif