added _gfileDeinit() dummy

remotes/origin_old/ugfx_release_2.6
Joel Bodenmann 2014-02-02 20:01:54 +01:00
parent d299756aba
commit a6c22fc364
1 changed files with 7 additions and 4 deletions

View File

@ -68,10 +68,8 @@ GFILE *gfileStdErr;
*/ */
static const GFILEVMT const * FsChain = GFILE_CHAINHEAD; static const GFILEVMT const * FsChain = GFILE_CHAINHEAD;
/** void _gfileInit(void)
* The init routine {
*/
void _gfileInit(void) {
#if GFILE_NEED_NATIVEFS #if GFILE_NEED_NATIVEFS
NativeStdIn.flags = GFILEFLG_OPEN|GFILEFLG_READ; NativeStdIn.flags = GFILEFLG_OPEN|GFILEFLG_READ;
NativeStdIn.vmt = &FsNativeVMT; NativeStdIn.vmt = &FsNativeVMT;
@ -91,6 +89,11 @@ void _gfileInit(void) {
#endif #endif
} }
void _gfileDeinit(void)
{
/* ToDo */
}
bool_t gfileExists(const char *fname) { bool_t gfileExists(const char *fname) {
const GFILEVMT *p; const GFILEVMT *p;