xref: /haiku/headers/private/mount/MountServer.h (revision b55a57da7173b9af0432bd3e148d03f06161d036)
1 /*
2  * Copyright 2007-2009, Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _MOUNT_SERVER_H
6 #define _MOUNT_SERVER_H
7 
8 #include <SupportDefs.h>
9 
10 
11 const uint32 kMountVolume 			= 'mntv';
12 const uint32 kMountAllNow			= 'mntn';
13 const uint32 kSetAutomounterParams 	= 'pmst';
14 const uint32 kGetAutomounterParams 	= 'gpms';
15 const uint32 kVolumeMounted			= 'vmtd';
16 const uint32 kUnmountVolume			= 'umnt';
17 
18 #define kMountServerSignature "application/x-vnd.Haiku-mount_server"
19 
20 
21 #endif // _MOUNT_SERVER_H
22