mirror of
https://github.com/sarah-walker-pcem/pcem.git
synced 2025-07-23 11:43:03 +02:00
24 lines
335 B
C
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 */
|