blob: cb741f9e0cc228e910199d933042627aaa9a1709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "mount.h"
void mount_add(char *path, void *data,
file (*open) (struct mount_struct*,char *path),
int (*getdents)(struct mount_struct*, uint32_t file_desciptor, fs_dirent *entries, uint32_t max_count))
{
}
mount *mounts_get()
{
return 0;
}
|