blob: 616262d3fe085ba5180ef4c4e6566f0b0834be08 (
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;
}
|