repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
btrfs: [] on the end of a struct field is a variable length array.
[haiku.git]
/
src
/
add-ons
/
kernel
/
file_systems
/
nfs
/
mount.h
blob
3d94158082a56951e0a5e82ce6db11d8e297eccf
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