C/C++
cprg699.txt
Associated article: Jukebox: Covering the Basses
Tags: C/C++
Published source code accompanying the article by Al Stevens in which he builds a MIDI jukebox. Also see JUKEBOX.ZIP.
C Programming Column
by Al Stevens
Listing One
// ----- midiplayer.h
#ifndef MIDIPLAYER_H
#define MIDIPLAYER_H
#include "stdafx.h"
#include "midiinfo.h"
// ---- realtime midi event data
struct MIDIEvent {
Long delta;
Short eventno;
Short channel;
...


