2022-09-10 20:32:26 +00:00
|
|
|
#ifndef __DVD_H__
|
|
|
|
#define __DVD_H__
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct DVDDiskID {
|
|
|
|
char gameName[4];
|
|
|
|
char company[2];
|
|
|
|
u8 diskNumber;
|
|
|
|
u8 gameVersion;
|
|
|
|
u8 streaming;
|
|
|
|
u8 streamingBufSize; // 0 = default
|
|
|
|
u8 padding[22]; // 0's are stored
|
|
|
|
} DVDDiskID;
|
|
|
|
|
2022-09-16 01:17:42 +00:00
|
|
|
typedef struct DVDCommandBlock DVDCommandBlock;
|
|
|
|
|
|
|
|
typedef void (*DVDCBCallback)(s32 result, DVDCommandBlock* block);
|
|
|
|
|
|
|
|
struct DVDCommandBlock {
|
|
|
|
DVDCommandBlock* next;
|
|
|
|
DVDCommandBlock* prev;
|
|
|
|
u32 command;
|
|
|
|
s32 state;
|
|
|
|
u32 offset;
|
|
|
|
u32 length;
|
|
|
|
void* addr;
|
|
|
|
u32 currTransferSize;
|
|
|
|
u32 transferredSize;
|
|
|
|
DVDDiskID* id;
|
|
|
|
DVDCBCallback callback;
|
|
|
|
void* userData;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct DVDFileInfo DVDFileInfo;
|
|
|
|
|
2022-09-13 04:26:54 +00:00
|
|
|
void DVDSetAutoFatalMessaging(BOOL);
|
2022-09-16 01:17:42 +00:00
|
|
|
void DVDReset();
|
2022-09-13 04:26:54 +00:00
|
|
|
|
2022-09-10 20:32:26 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|