12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef PAL_MIDI_H
- #define PAL_MIDI_H
- #include "common.h"
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #include "native_midi/native_midi.h"
- VOID
- MIDI_Play(
- INT iNumRIX,
- BOOL fLoop
- );
- VOID
- MIDI_CheckLoop(
- VOID
- );
- #ifdef __cplusplus
- }
- #endif
- #endif
|