2009-05-15 20:03:19 +00:00
|
|
|
#ifndef _FATMOUNTER_H_
|
|
|
|
#define _FATMOUNTER_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2009-07-30 05:41:12 +00:00
|
|
|
extern "C" {
|
2009-05-15 20:03:19 +00:00
|
|
|
#endif
|
|
|
|
|
2009-07-30 05:41:12 +00:00
|
|
|
int USBDevice_Init();
|
|
|
|
void USBDevice_deInit();
|
|
|
|
int isSdInserted();
|
|
|
|
int isInserted(const char *path);
|
|
|
|
int SDCard_Init();
|
|
|
|
void SDCard_deInit();
|
2009-05-15 20:03:19 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|