mirror of
https://github.com/86Box/86Box.git
synced 2026-02-23 18:08:20 -07:00
Made ATAPI derived from SCSI. Added proper S/G emulation for SCSI DMA. Added SCSI CD-ROM emulation, preserving all the former ATAPI commands as well.
18 lines
382 B
C
18 lines
382 B
C
/* Copyright holders: Sarah Walker, Tenshi
|
|
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 uint32_t cdrom_capacity;
|
|
|
|
extern int ioctl_open(char d);
|
|
extern void ioctl_reset();
|
|
|
|
extern void ioctl_close(void);
|
|
|
|
#endif /* ! CDROM_IOCTL_H */
|