mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
23 lines
422 B
C
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
|