Fixed ZDE build - missing header file
[ZeXOS.git] / kernel / include / mount.h
blobf46cd2019f4dba1128964280925f3ad4d85b3d5e
1 /*
2 * ZeX/OS
3 * Copyright (C) 2007 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include <partition.h>
22 #define VFS_MOUNTPOINT_LEN 32
24 /* Mount structure */
25 typedef struct mount_context {
26 struct mount_context *next, *prev;
28 partition_t *p;
29 char mountpoint[VFS_MOUNTPOINT_LEN];
30 } mount_t;
32 extern void mount_display ();
33 extern partition_t *mount_find (char *mountpoint);
34 extern bool mount (partition_t *p, char *dir, char *mountpoint);
35 extern bool umount (partition_t *p, char *mountpoint);