summaryrefslogtreecommitdiff
path: root/Source/Kernel/VFS/VFS.ns.h
blob: 622d120104ae24135495a803312c9939738d619d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef DEF_VFS_NS_H
#define DEF_VFS_NS_H

#include <VFS/FSNode.proto.h>
#include <VFS/FileSystem.proto.h>

typedef FileSystem* (* mountcallback)(Partition* partition);

namespace VFS {
	void registerMountCallback(mountcallback mcb);
	bool mount(Partition* partition);
	bool setRootNode(FSNode* root);
}

#endif