engine-psx/include/cd_callback.h

12 lines
176 B
C
Raw Permalink Normal View History

2024-08-28 18:46:03 -03:00
#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