mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-19 09:49:21 +01:00
ad2eb5c182
*Moved SD Card Button a bit to the left.
22 lines
312 B
C
22 lines
312 B
C
#ifndef _FATMOUNTER_H_
|
|
#define _FATMOUNTER_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
int USBDevice_Init();
|
|
void USBDevice_deInit();
|
|
void USBDevice_ReInit();
|
|
int isSdInserted();
|
|
int isInserted(const char *path);
|
|
int SDCard_Init();
|
|
void SDCard_deInit();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|