µGFX  2.9
version 2.9
gfile_petitfs_wrapper.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 #include "../../gfx.h"
9 
10 #if GFX_USE_GFILE && GFILE_NEED_PETITFS && !GFILE_PETITFS_EXTERNAL_LIB
11 
12 #include "gfile_petitfs_wrapper.h"
13 
14 // Include the source we want
15 #include "../../3rdparty/petitfs-0.03/src/pff.c"
16 
17 #endif // GFX_USE_GFILE && GFILE_NEED_PETITFS && !GFILE_PETITFS_EXTERNAL_LIB
GFILE PETITFS wrapper.