logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

load_midi - Loads a MIDI file. Allegro game programming library.

Description

       Loads a MIDI file (handles both format 0 and format 1). Example:

          MIDI *music;
          music = load_midi("backmus.mid");
          if (!music)
             abort_on_error("Couldn't load background music!");

Name

       load_midi - Loads a MIDI file. Allegro game programming library.

Return Value

       Returns  a  pointer to a MIDI structure, or NULL on error. Remember to free this MIDI file later to avoid
       memory leaks.

See Also

destroy_midi(3alleg4), play_midi(3alleg4), get_midi_length(3alleg4), exmidi(3alleg4)

Allegro                                           version 4.4.3                               load_midi(3alleg4)

Synopsis

#include<allegro.h>MIDI*load_midi(constchar*filename);

See Also