C/C++
cprog.txt
Associated article: C Programming
Tags: C/C++
Published source code accompanying Al Stevens column in which he presents MIDI Xchg, a program that tests the MIDI data stream by sending event messages from one device to another as fast as possible. Also see MIDIXCHG.ZIP.
C Programming Column
by Al Stevens
Listing One
// ----- midiin.h
#ifndef MIDIIN_H
#define MIDIIN_H
#include <mmsystem.h>
class MidiIn {
void* m_pFunc;
HMIDIIN hMidiIn;
short int numDevices;
short int currDevice;
public:
MidiIn();
~MidiIn();
void RegisterMIDIFunction(...


