011a4cdbfc
anymore). * Added interface to get the current settings. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33486 a95241bf-73f2-0310-859d-f6bbb57e9c96
22 lines
538 B
C
22 lines
538 B
C
/*
|
|
* 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';
|
|
const uint32 kGetAutomounterParams = 'gpms';
|
|
const uint32 kVolumeMounted = 'vmtd';
|
|
const uint32 kUnmountVolume = 'umnt';
|
|
|
|
#define kMountServerSignature "application/x-vnd.Haiku-mount_server"
|
|
|
|
|
|
#endif // _MOUNT_SERVER_H
|