SysCheck-ModMii-Edition/include/fatMounter.h
Joostinonline 3f30c6bbf9 -Shouldn't have stripped down IOS_ReloadIOS
-Added an additional method of checking the System Menu version.  The current way works fine, but it doesn't hurt to have some backup methods.
-Fixed mismatched functions in header files.
-A little bit of code cleanup
-Touched up the cogs
2013-10-21 16:41:01 +00:00

20 lines
241 B
C

#ifndef _FATMOUNTER_H_
#define _FATMOUNTER_H_
#ifdef __cplusplus
extern "C"
{
#endif
// Prototypes
int MountSD(void);
void UnmountSD(void);
int MountUSB(void);
void UnmountUSB(void);
#ifdef __cplusplus
}
#endif
#endif