mirror of
https://github.com/modmii/SysCheck-ModMii-Edition.git
synced 2024-11-04 15:55:05 +01:00
20 lines
243 B
C
20 lines
243 B
C
#ifndef _FATMOUNTER_H_
|
|
#define _FATMOUNTER_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
// Prototypes
|
|
void MountSD(void);
|
|
void UnmountSD(void);
|
|
void MountUSB(void);
|
|
void UnmountUSB(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|