mirror of
https://github.com/luksamuk/engine-psx.git
synced 2025-04-28 13:28:02 +03:00
11 lines
176 B
C
11 lines
176 B
C
#ifndef CD_CALLBACK_H
|
|
#define CD_CALLBACK_H
|
|
|
|
typedef enum {
|
|
PLAYBACK_XA,
|
|
} PlaybackType;
|
|
|
|
void cd_set_callbacks(PlaybackType type);
|
|
void cd_detach_callbacks(void);
|
|
|
|
#endif
|