mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-19 17:59:16 +01:00
ce5930f297
* Updated to Hermes usb storage code * Fixed some bugs in ntfs while writing timestamps, resulting in different hashes (dimok) * Fixed codedump when switching partitions (issue 1454) * Fixed graphical glitch on 4:3 screens, where the prefetch cover was visible in the coverwall * Fixed a bug with installing games, due to the switch to C++ (dimok)
34 lines
622 B
C
34 lines
622 B
C
#ifndef _USBSTORAGE2_H_
|
|
#define _USBSTORAGE2_H_
|
|
|
|
#include "ogc/disc_io.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Prototypes */
|
|
s32 USBStorage2_GetCapacity(u32 *);
|
|
s32 USBStorage2_Init(void);
|
|
void USBStorage2_Deinit(void);
|
|
s32 USBStorage2_Umount(void);
|
|
|
|
s32 USBStorage2_ReadSectors(u32, u32, void *);
|
|
s32 USBStorage2_WriteSectors(u32, u32, const void *);
|
|
|
|
s32 USBStorage2_Watchdog(u32 on_off);
|
|
|
|
s32 USBStorage2_TestMode(u32 on_off);
|
|
|
|
s32 USBStorage2_EHC_Off(void);
|
|
|
|
#define DEVICE_TYPE_WII_UMS (('W'<<24)|('U'<<16)|('M'<<8)|'S')
|
|
|
|
extern const DISC_INTERFACE __io_usbstorage2;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|