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