version 1.17, 1999/07/08 01:05:58 |
version 1.17.14.2, 2002/06/20 03:37:16 |
Line 43 struct adosfs_args { |
|
Line 43 struct adosfs_args { |
|
}; |
}; |
|
|
#ifdef _KERNEL |
#ifdef _KERNEL |
|
#include <miscfs/genfs/genfs_node.h> |
|
|
/* |
/* |
* Amigados datestamp. (from 1/1/1978 00:00:00 local) |
* Amigados datestamp. (from 1/1/1978 00:00:00 local) |
*/ |
*/ |
Line 62 enum anode_type { AROOT, ADIR, AFILE, AL |
|
Line 64 enum anode_type { AROOT, ADIR, AFILE, AL |
|
* table for f/e. it is always ANODETABSZ(ap) bytes in size. |
* table for f/e. it is always ANODETABSZ(ap) bytes in size. |
*/ |
*/ |
struct anode { |
struct anode { |
|
struct genfs_node gnode; |
LIST_ENTRY(anode) link; |
LIST_ENTRY(anode) link; |
enum anode_type type; |
enum anode_type type; |
char name[31]; /* (r/d/f) name for object */ |
char name[31]; /* (r/d/f) name for object */ |
Line 166 void adosfs_aremhash __P((struct anode * |
|
Line 169 void adosfs_aremhash __P((struct anode * |
|
|
|
int adosfs_lookup __P((void *)); |
int adosfs_lookup __P((void *)); |
|
|
int (**adosfs_vnodeop_p) __P((void *)); |
extern int (**adosfs_vnodeop_p) __P((void *)); |
#endif /* _KERNEL */ |
#endif /* _KERNEL */ |