xref: /haiku/src/add-ons/kernel/file_systems/nfs/mount.h (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1 #ifndef _MOUNT_H
2 
3 #define _MOUNT_H
4 
5 #include <SupportDefs.h>
6 
7 const int32 MOUNT_VERSION=1;
8 const int32 MOUNT_PROGRAM=100005;
9 
10 enum
11 {
12 	MOUNTPROC_NULL		= 0,
13 	MOUNTPROC_MNT		= 1,
14 	MOUNTPROC_DUMP		= 2,
15 	MOUNTPROC_UMNT		= 3,
16 	MOUNTPROC_UMNTALL	= 4,
17 	MOUNTPROC_EXPORT	= 5
18 };
19 
20 #endif
21