Special Option translated...
[midnight-commander.git] / vfs / extfs.h
blob67a8282193ffadce8121a58ce594558b0d02cf3d
1 /* Declarations for the extfs.
3 Copyright (C) 1995 The Free Software Foundation
5 Written by: 1995 Jakub Jelinek
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 struct archive {
22 int fstype;
23 char *name;
24 char *local_name;
25 struct stat extfsstat;
26 struct stat local_stat;
27 dev_t rdev;
28 int fd_usage;
29 ino_t __inode_counter;
30 struct entry *root_entry;
31 struct entry *current_dir;
32 struct archive *next;
35 typedef struct archive extfs_archive; /* Do _not_ use this inside extfs.c */