WiiFlow_Lite/source/devicemounter/usbstorage.h
2012-01-21 20:57:41 +00:00

23 lines
422 B
C

#ifndef _USBSTORAGE_H_
#define _USBSTORAGE_H_
#include <ogcsys.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* Prototypes */
s32 USBStorage_GetCapacity(u32 *);
s32 USBStorage_SetWatchdog(u32);
s32 USBStorage_Init(void);
void USBStorage_Deinit(void);
s32 USBStorage_ReadSectors(u32, u32, void *);
s32 USBStorage_WriteSectors(u32, u32, void *);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif