mirror of
https://github.com/86Box/86Box.git
synced 2026-02-23 01:48:21 -07:00
15 lines
342 B
C
15 lines
342 B
C
/* Copyright holders: Sarah Walker
|
|
see COPYING for more details
|
|
*/
|
|
#ifndef CDROM_IOCTL_H
|
|
#define CDROM_IOCTL_H
|
|
|
|
/* this header file lists the functions provided by
|
|
various platform specific cdrom-ioctl files */
|
|
|
|
extern int cdrom_null_open(char d);
|
|
extern void cdrom_null_reset();
|
|
extern void null_close();
|
|
|
|
#endif /* ! CDROM_IOCTL_H */
|