2009-10-07 22:34:29 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2007-2009, Haiku, Inc. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _MOUNT_SERVER_H
|
|
|
|
#define _MOUNT_SERVER_H
|
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
|
|
|
|
const uint32 kMountVolume = 'mntv';
|
|
|
|
const uint32 kMountAllNow = 'mntn';
|
|
|
|
const uint32 kSetAutomounterParams = 'pmst';
|
2009-10-07 23:31:57 +04:00
|
|
|
const uint32 kGetAutomounterParams = 'gpms';
|
2009-10-07 22:34:29 +04:00
|
|
|
const uint32 kVolumeMounted = 'vmtd';
|
|
|
|
const uint32 kUnmountVolume = 'umnt';
|
|
|
|
|
2009-10-07 23:31:57 +04:00
|
|
|
#define kMountServerSignature "application/x-vnd.Haiku-mount_server"
|
2009-10-07 22:34:29 +04:00
|
|
|
|
|
|
|
|
|
|
|
#endif // _MOUNT_SERVER_H
|