diff options
Diffstat (limited to 'common/fmplayer_common.h')
-rw-r--r-- | common/fmplayer_common.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/common/fmplayer_common.h b/common/fmplayer_common.h index 5394293..c4f58af 100644 --- a/common/fmplayer_common.h +++ b/common/fmplayer_common.h @@ -2,7 +2,24 @@ #define MYON_FMPLAYER_COMMON_H_INCLUDED #include <stddef.h> +#include <stdbool.h> void *fmplayer_load_data(const char *name, size_t size); +struct fmdriver_work; +struct ppz8; +struct opna; +struct opna_timer; +void fmplayer_init_work_opna( + struct fmdriver_work *work, + struct ppz8 *ppz8, + struct opna *opna, + struct opna_timer *timer, + void *adpcm_ram +); + +struct opna_drum; +bool fmplayer_drum_rom_load(struct opna_drum *drum); +bool fmplayer_drum_loaded(void); + #endif // MYON_FMPLAYER_COMMON_H_INCLUDED |