mirror of
https://github.com/sarah-walker-pcem/pcem.git
synced 2025-07-23 11:43:03 +02:00
15 lines
371 B
C
15 lines
371 B
C
#ifndef CDROM_IOCTL_H
|
|
#define CDROM_IOCTL_H
|
|
|
|
/* this header file lists the functions provided by
|
|
various platform specific cdrom-ioctl files */
|
|
|
|
extern int ioctl_open(char d);
|
|
extern void ioctl_reset();
|
|
extern void ioctl_close();
|
|
void ioctl_set_drive(char d);
|
|
void ioctl_audio_callback(int16_t *output, int len);
|
|
void ioctl_audio_stop();
|
|
|
|
#endif /* ! CDROM_IOCTL_H */
|