From ae4cfab6b96733a0b0f3176e25d1e01e906e0e0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 1 Nov 2004 01:01:21 +0000 Subject: [PATCH] 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 --- headers/os/kernel/fs_volume.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/headers/os/kernel/fs_volume.h b/headers/os/kernel/fs_volume.h index 53db19bbe8..dadb3d377a 100644 --- a/headers/os/kernel/fs_volume.h +++ b/headers/os/kernel/fs_volume.h @@ -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