mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
af589b404e
- Added retry on read errors - Added skipping on read errors - Added pos to compress data - Added pos to align all files by 32k - Dumper will now only dump game.iso on default - Now using drivebay led to show disc reading activity - Now checking if game already exists before dumping it Configuration of the dumper: Set the following vars in wiiflow.ini (domain: DML) to config the dumper: - skip_on_error=yes/no to enable/disable error skipping (default = no) - compressed_dump=yes/no to enable/disable compressed dumping (default = no) - write_ex_files=yes/no write ex files yes/no (default = no) - align_files=yes/no to align all by 32k yes/no (default = no) - num_retries=# were # = the amount of read retries the dumper should perform before it marks the block as bad on read errors
37 lines
871 B
C
37 lines
871 B
C
#ifndef _WDVD_H_
|
|
#define _WDVD_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
/* Prototypes */
|
|
s32 WDVD_Init(void);
|
|
s32 WDVD_Close(void);
|
|
s32 WDVD_GetHandle(void);
|
|
s32 WDVD_Reset(void);
|
|
s32 WDVD_ReadDiskId(void *);
|
|
s32 WDVD_Seek(u64);
|
|
s32 WDVD_Offset(u64);
|
|
s32 WDVD_StopLaser(void);
|
|
s32 WDVD_StopMotor(void);
|
|
s32 WDVD_OpenPartition(u64 offset, void* Ticket, void* Certificate, unsigned int Cert_Len, void* Out);
|
|
s32 WDVD_ClosePartition(void);
|
|
s32 WDVD_UnencryptedRead(void *, u32, u64);
|
|
s32 WDVD_Read(void *, u32, u64);
|
|
s32 WDVD_LowRequestError(u32 *error);
|
|
s32 WDVD_WaitForDisc(void);
|
|
s32 WDVD_GetCoverStatus(u32 *);
|
|
s32 WDVD_SetUSBMode(u32, const u8 *, s32);
|
|
s32 WDVD_Eject(void);
|
|
s32 WDVD_Read_Disc_BCA(void *);
|
|
s32 WDVD_SetFragList(int device, void *fraglist, int size);
|
|
s32 WDVD_setstreaming();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|
|
|