2008-12-11 18:38:29 +01:00
|
|
|
/*
|
|
|
|
* file_fat.c
|
|
|
|
*
|
2009-05-13 16:26:55 +02:00
|
|
|
* FAT loading support
|
2008-12-11 18:38:29 +01:00
|
|
|
*
|
2009-05-13 16:26:55 +02:00
|
|
|
* Eke-Eke (2008,2009)
|
2008-12-11 18:38:29 +01:00
|
|
|
*
|
2009-05-13 16:26:55 +02:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2008-12-11 18:38:29 +01:00
|
|
|
*
|
2009-05-13 16:26:55 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2008-12-11 18:38:29 +01:00
|
|
|
*
|
2009-05-13 16:26:55 +02:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2008-12-11 18:38:29 +01:00
|
|
|
*
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _FILE_FAT_H
|
|
|
|
#define _FILE_FAT_H
|
|
|
|
|
2010-11-01 19:13:17 +01:00
|
|
|
|
|
|
|
#define TYPE_SD (0)
|
2008-12-11 18:38:29 +01:00
|
|
|
#ifdef HW_RVL
|
2010-11-01 19:13:17 +01:00
|
|
|
#define TYPE_USB (1)
|
|
|
|
#define TYPE_DVD (2)
|
|
|
|
#else
|
|
|
|
#define TYPE_DVD (1)
|
2008-12-11 18:38:29 +01:00
|
|
|
#endif
|
2010-11-01 19:13:17 +01:00
|
|
|
#define TYPE_RECENT (TYPE_DVD + 1)
|
2008-12-11 18:38:29 +01:00
|
|
|
|
2010-11-01 19:13:17 +01:00
|
|
|
#define FILECHUNK (2048)
|
2009-10-16 13:32:55 +02:00
|
|
|
|
2010-11-01 19:13:17 +01:00
|
|
|
extern int OpenDirectory(int device);
|
|
|
|
extern int UpdateDirectory(bool go_up, char *filename);
|
|
|
|
extern int ParseDirectory(void);
|
2011-04-01 00:11:05 +02:00
|
|
|
extern int LoadFile(u8* buffer,u32 selection, char *filename);
|
2008-12-11 18:38:29 +01:00
|
|
|
|
|
|
|
#endif
|