cd: switch to CD controller code from genplus
[picodrive.git] / pico / cd / cd_file.h
1 #ifndef _CD_FILE_H
2 #define _CD_FILE_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 typedef enum
9 {
10         CIT_NOT_CD = 0,
11         CIT_ISO,
12         CIT_BIN,
13         CIT_CUE
14 }
15 cd_img_type;
16
17
18 PICO_INTERNAL int  Load_CD_Image(const char *iso_name, cd_img_type type);
19 PICO_INTERNAL void Unload_ISO(void);
20 PICO_INTERNAL int  FILE_Read_One_LBA_CDC(void);
21
22
23 #ifdef __cplusplus
24 };
25 #endif
26
27 #endif