2009-10-01 01:10:58 +02:00
|
|
|
#ifndef _FATMOUNTER_H_
|
|
|
|
#define _FATMOUNTER_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2010-09-19 01:16:05 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
#endif
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
extern int fat_sd_mount;
|
|
|
|
extern sec_t fat_sd_sec;
|
|
|
|
extern int fat_usb_mount;
|
|
|
|
extern sec_t fat_usb_sec;
|
|
|
|
extern int fat_wbfs_mount;
|
|
|
|
extern sec_t fat_wbfs_sec;
|
2009-11-15 20:52:58 +01:00
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
int USBDevice_Init();
|
|
|
|
void USBDevice_deInit();
|
2010-09-19 01:16:05 +02:00
|
|
|
int WBFSDevice_Init( u32 sector );
|
2009-11-15 20:52:58 +01:00
|
|
|
void WBFSDevice_deInit();
|
2010-09-19 01:16:05 +02:00
|
|
|
int isInserted( const char *path );
|
2009-10-01 01:10:58 +02:00
|
|
|
int SDCard_Init();
|
|
|
|
void SDCard_deInit();
|
2009-12-19 15:05:31 +01:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
s32 MountNTFS( u32 sector );
|
|
|
|
s32 UnmountNTFS( void );
|
|
|
|
|
|
|
|
extern int fat_usb_mount;
|
|
|
|
extern sec_t fat_usb_sec;
|
|
|
|
extern int fat_wbfs_mount;
|
|
|
|
extern sec_t fat_wbfs_sec;
|
|
|
|
extern int fs_ntfs_mount;
|
|
|
|
extern sec_t fs_ntfs_sec;
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|