2012-07-18 16:09:28 +02:00
|
|
|
#ifndef _USBSTORAGE2_H_
|
|
|
|
#define _USBSTORAGE2_H_
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-07-18 16:09:28 +02:00
|
|
|
#include "ogc/disc_io.h"
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2012-07-18 16:09:28 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Prototypes */
|
|
|
|
s32 USBStorage2_Init(u32 port);
|
|
|
|
void USBStorage2_Deinit();
|
|
|
|
s32 USBStorage2_GetCapacity(u32 port, u32 *size);
|
|
|
|
|
|
|
|
s32 USBStorage2_ReadSectors(u32 port, u32 sector, u32 numSectors, void *buffer);
|
|
|
|
s32 USBStorage2_WriteSectors(u32 port, u32 sector, u32 numSectors, const void *buffer);
|
|
|
|
s32 USBStorage2_GetSectorSize();
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-07-18 16:09:28 +02:00
|
|
|
s32 USBStorage2_SetPort(u32 port);
|
|
|
|
s32 USBStorage2_GetPort();
|
|
|
|
|
|
|
|
#define DEVICE_TYPE_WII_UMS (('W'<<24)|('U'<<16)|('M'<<8)|'S')
|
|
|
|
|
|
|
|
extern const DISC_INTERFACE __io_usbstorage2_port0;
|
|
|
|
extern const DISC_INTERFACE __io_usbstorage2_port1;
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2012-07-18 16:09:28 +02:00
|
|
|
#endif
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
#endif
|