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 9 #ifndef _HFS_H 10 #define _HFS_H 11 12 #include <linux/hfs_common.h> 13 14 /*======== Data structures kept in memory ========*/ 15 16 struct hfs_readdir_data { 17 struct list_head list; 18 struct file *file; 19 struct hfs_cat_key key; 20 }; 21 22 #endif 23