rawfs.h revision 1.1 1 1.1 thorpej /* $NetBSD: rawfs.h,v 1.1 1997/02/04 03:52:47 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Raw file system - for stream devices like tapes.
5 1.1 thorpej * No random access, only sequential read allowed.
6 1.1 thorpej */
7 1.1 thorpej
8 1.1 thorpej int rawfs_open __P((char *path, struct open_file *f));
9 1.1 thorpej int rawfs_close __P((struct open_file *f));
10 1.1 thorpej int rawfs_read __P((struct open_file *f, void *buf,
11 1.1 thorpej u_int size, u_int *resid));
12 1.1 thorpej int rawfs_write __P((struct open_file *f, void *buf,
13 1.1 thorpej u_int size, u_int *resid));
14 1.1 thorpej off_t rawfs_seek __P((struct open_file *f, off_t offset, int where));
15 1.1 thorpej int rawfs_stat __P((struct open_file *f, struct stat *sb));
16