µGFX  2.9
version 2.9
gfile_fs_ram.c
1 /*
2  * This file is subject to the terms of the GFX License. If a copy of
3  * the license was not distributed with this file, you can obtain one at:
4  *
5  * http://ugfx.io/license.html
6  */
7 
8 /********************************************************
9  * The RAM file-system
10  ********************************************************/
11 
12 #include "../../gfx.h"
13 
14 #if GFX_USE_GFILE && GFILE_NEED_RAMFS
15 
16 #include "gfile_fs.h"
17 
18 #error "GFILE: RAMFS Not implemented yet"
19 
20 const GFILEVMT FsRAMVMT = {
21  0, // flags
22  'R', // prefix
23  0, 0, 0, 0,
24  0, 0, 0, 0,
25  0, 0, 0,
26  0, 0, 0,
27  #if GFILE_NEED_FILELISTS
28  0, 0, 0,
29  #endif
30 };
31 
32 #endif //GFX_USE_GFILE && GFILE_NEED_RAMFS
GFILE file system header.