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
11const uint32 kMountVolume 			= 'mntv';
12const uint32 kMountAllNow			= 'mntn';
13const uint32 kSetAutomounterParams 	= 'pmst';
14const uint32 kGetAutomounterParams 	= 'gpms';
15const uint32 kVolumeMounted			= 'vmtd';
16const uint32 kUnmountVolume			= 'umnt';
17
18#define kMountServerSignature "application/x-vnd.Haiku-mount_server"
19
20
21#endif // _MOUNT_SERVER_H
22