notaz.gp2x.de
/
picodrive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
fixed deadlock
[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
#define TYPE_ISO 1
9
#define TYPE_BIN 2
10
#define TYPE_MP3 3
11
//#define TYPE_WAV 4
12
13
14
15
PICO_INTERNAL int Load_ISO(const char *iso_name, int is_bin);
16
PICO_INTERNAL void Unload_ISO(void);
17
PICO_INTERNAL int FILE_Read_One_LBA_CDC(void);
18
PICO_INTERNAL int FILE_Play_CD_LBA(void);
19
20
21
#ifdef __cplusplus
22
};
23
#endif
24
25
#endif