extfs.h 1.1 KB

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