Files
pcem/includes/private/cdrom/cdrom-image.h
Michael J. Manley b90076487e This is it for the Refactoring. This is the final layout for everything.
Any more refactoring, will request RFC
2022-01-25 00:03:44 -08:00

24 lines
335 B
C

#ifndef CDROM_ISO_H
#define CDROM_ISO_H
#include <stdint.h>
extern char image_path[1024];
#ifdef __cplusplus
extern "C" {
#endif
int image_open(char *fn);
void image_reset();
void image_close();
void image_audio_callback(int16_t *output, int len);
void image_audio_stop();
#ifdef __cplusplus
}
#endif
#endif /* ! CDROM_ISO_H */