Files
86Box/src/include/86box/cdrom_image.h

41 lines
1.0 KiB
C
Raw Normal View History

/*
2023-01-06 15:36:05 -05:00
* 86Box A hypervisor and IBM PC system emulator that specializes in
* running old operating systems and software designed for IBM
* PC systems and compatibles from 1981 through fairly recent
* system designs based on the PCI bus.
*
2023-01-06 15:36:05 -05:00
* This file is part of the 86Box distribution.
*
2023-01-06 15:36:05 -05:00
* CD-ROM image file handling module header, translated to C
* from cdrom_dosbox.h.
*
2023-01-06 15:36:05 -05:00
* Authors: RichardG,
* Miran Grca, <mgrca8@gmail.com>
*
2023-01-06 15:36:05 -05:00
* Copyright 2016-2022 RichardG.
* Copyright 2016-2022 Miran Grca.
*/
2017-05-18 14:03:43 -04:00
#ifndef CDROM_IMAGE_H
2022-10-15 13:38:10 -03:00
#define CDROM_IMAGE_H
2017-05-18 14:03:43 -04:00
/* this header file lists the functions provided by
various platform specific cdrom-ioctl files */
#ifdef __cplusplus
extern "C" {
#endif
2022-10-15 13:38:10 -03:00
extern int image_open(uint8_t id, wchar_t *fn);
2017-05-18 14:03:43 -04:00
extern void image_reset(uint8_t id);
extern void image_close(uint8_t id);
2022-10-15 13:38:10 -03:00
void update_status_bar_icon_state(int tag, int state);
2017-05-18 14:03:43 -04:00
extern void cdrom_set_null_handler(uint8_t id);
#ifdef __cplusplus
}
#endif
2022-02-18 19:42:21 -05:00
#endif /*CDROM_IMAGE_H*/