blob: 768b1933a797f311c433b1fc7684f7070a3df4bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
struct VFS_file
{
const char *name;
rw::uint8 *data;
rw::uint32 length;
};
struct VFS
{
// TODO: directories?
VFS_file *files;
int numFiles;
};
void installVFS(VFS *vfs);
|