Since the file system is usually recognized by the disk device manager,

there is no reason to let it appear important by having it as first
parameter; it's only used to override the DDM's decision if the user
so choses.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9694 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-11-01 01:01:21 +00:00
parent eef883acab
commit ae4cfab6b9
1 changed files with 3 additions and 6 deletions

View File

@ -1,6 +1,6 @@
/* File System volume functions
**
** Distributed under the terms of the OpenBeOS License.
** Distributed under the terms of the Haiku License.
*/
#ifndef _FS_VOLUME_H
#define _FS_VOLUME_H
@ -20,13 +20,10 @@
extern "C" {
#endif
extern status_t fs_mount_volume(const char *filesystem, const char *where,
const char *device, uint32 flags, const char *parameters);
extern status_t fs_mount_volume(const char *where, const char *device,
const char *filesystem, uint32 flags, const char *parameters);
extern status_t fs_unmount_volume(const char *path, uint32 flags);
extern status_t fs_initialize_volume(const char *filesystem, const char *volumeName,
const char *device, uint32 flags, const char *parameters);
#ifdef __cplusplus
}
#endif