mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-08 20:45:07 +01:00
18a26d7e1a
*Rewrote complete main menu function *Moved ext2/3/4 disc cache to mem2 as on FAT/NTFS (added ext2 as custom lib due to that) *Added missing header files from R1011 for ext support *Fixed crash on Numpad when pressing a button *Fixed boot of WiiMC *Changed SVN line ending to LF (Unix style)
26 lines
598 B
C
26 lines
598 B
C
#ifndef _WBFS_RW_H
|
|
#define _WBFS_RW_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include "libs/libwbfs/libwbfs.h"
|
|
|
|
extern u32 sector_size;
|
|
extern rw_sector_callback_t readCallback;
|
|
extern rw_sector_callback_t writeCallback;
|
|
|
|
s32 __ReadDVD(void *fp, u32 lba, u32 len, void *iobuf);
|
|
s32 __ReadUSB(void *fp, u32 lba, u32 count, void *iobuf);
|
|
s32 __WriteUSB(void *fp, u32 lba, u32 count, void *iobuf);
|
|
s32 __ReadSDHC(void *fp, u32 lba, u32 count, void *iobuf);
|
|
s32 __WriteSDHC(void *fp, u32 lba, u32 count, void *iobuf);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //_WBFS_RW_H
|