diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/pc98/pc98/wd_cd.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/pc98/pc98/wd_cd.h b/sys/pc98/pc98/wd_cd.h index 1255546..223d9ae 100644 --- a/sys/pc98/pc98/wd_cd.h +++ b/sys/pc98/pc98/wd_cd.h @@ -347,3 +347,12 @@ struct acd { u_int next_writeable_lba; /* Next writable position */ struct wormio_prepare_track preptrack; /* Scratch region */ }; + +struct ioc_read_audio { + u_char address_format; + union msf_lba address; + int nframes; + u_char* buffer; +}; + +#define CDIOCREADAUDIO _IOWR('c',31,struct ioc_read_audio) |