MIDI.H 584 B

1234567891011121314151617181920212223242526
  1. /* Header File for PEPSI MIDI Audio */
  2. #if !defined(__MIDI_H)
  3. #define __MIDI_H
  4. #include "sosm.h"
  5. #define MIDI_PATH "MIDI\\"
  6. #define BANK_SIZE 5404
  7. #define MT32_SIZE 1404
  8. extern short int InitialiseMIDI(void);
  9. extern short int UnInitialiseMIDI(void);
  10. extern short int StartSong(char *song,short int vol);
  11. extern void PauseSong();
  12. extern void ResumeSong();
  13. extern void StopSong();
  14. extern short int CheckSong();
  15. extern void SetMIDIVolume(short int Music);
  16. extern WORD MIDIDriverHandle; // Handle of driver for playing samples
  17. extern WORD SongHandle;
  18. #endif /* __MIDI_H */