hfs.h 437 B

12345678910111213141516171819202122
  1. /*
  2. * linux/fs/hfs/hfs.h
  3. *
  4. * Copyright (C) 1995-1997 Paul H. Hargrove
  5. * (C) 2003 Ardis Technologies <roman@ardistech.com>
  6. * This file may be distributed under the terms of the GNU General Public License.
  7. */
  8. #ifndef _HFS_H
  9. #define _HFS_H
  10. #include <linux/hfs_common.h>
  11. /*======== Data structures kept in memory ========*/
  12. struct hfs_readdir_data {
  13. struct list_head list;
  14. struct file *file;
  15. struct hfs_cat_key key;
  16. };
  17. #endif