Files
86Box/src/cdrom-iso.h
OBattler cee82642ef Made the emulator even more Unicode then before - configuration files are now Unicode, and floppy images, CD/DVD .ISO images, and hard disk images can now be in paths with non-Latin characters;
Fixed a few minor UI bugs;
Brought IDE IDENTIFY command behavior back in line with Mainline PCEM, in hopes to reduce bugs.
2017-05-05 22:36:10 +02:00

16 lines
366 B
C

/* Copyright holders: RichardG867, Tenshi
see COPYING for more details
*/
#ifndef CDROM_ISO_H
#define CDROM_ISO_H
/* this header file lists the functions provided by
various platform specific cdrom-ioctl files */
extern int iso_open(uint8_t id, wchar_t *fn);
extern void iso_reset(uint8_t id);
extern void iso_close(uint8_t id);
#endif /* ! CDROM_ISO_H */