blob: f1c1d2a01e5964be361aef86e45af5e8b497b4fc (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef MYON_FMPLAYER_DRUMROM_H_INCLUDED
#define MYON_FMPLAYER_DRUMROM_H_INCLUDED
#include <stdbool.h>
struct opna_drum;
bool fmplayer_drum_rom_load(struct opna_drum *drum);
bool fmplayer_drum_loaded(void);
#endif // MYON_FMPLAYER_DRUMROM_H_INCLUDED
|