Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / arch / sun68k / stand / tapeboot / rawfs.h
blobaf8ccc4b37cd56c196b52ebc8d25d98af8006211
1 /* $NetBSD: rawfs.h,v 1.1.24.4 2005/01/24 08:35:03 skrll Exp $ */
3 /*
4 * Raw file system - for stream devices like tapes.
5 * No random access, only sequential read allowed.
6 */
8 int rawfs_open(const char *, struct open_file *);
9 int rawfs_close(struct open_file *);
10 int rawfs_read(struct open_file *, void *, u_int, u_int *);
11 int rawfs_write(struct open_file *, void *, u_int, u_int *);
12 off_t rawfs_seek(struct open_file *, off_t, int);
13 int rawfs_stat(struct open_file *, struct stat *);