mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 17:29:17 +01:00
22 lines
362 B
C
22 lines
362 B
C
#ifndef _USBSTORAGE_H_
|
|
#define _USBSTORAGE_H_
|
|
|
|
#include <asndlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
/* Prototypes */
|
|
s32 USBStorage_GetCapacity(u32 *);
|
|
s32 USBStorage_Init(void);
|
|
void USBStorage_Deinit(void);
|
|
s32 USBStorage_ReadSectors(u32, u32, void *);
|
|
s32 USBStorage_WriteSectors(u32, u32, void *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|