home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 202.lha / SoundScape / Include / midi.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-12-28  |  305 b   |  18 lines

  1. /*    MIDI.H    Midi port state structure. 
  2.     (c) 1986 Todor Fay
  3. */ 
  4.  
  5. struct MidiState { 
  6.     long length; 
  7.     long midinskew;     
  8.     char *sysexinbuffer; 
  9.     long sysexinsize; 
  10.     long sysexincount; 
  11.     long sysexinport; 
  12.     char *sysexoutbuffer; 
  13.     long sysexoutsize; 
  14.     long sysexoutcount; 
  15. }; 
  16.  
  17.  
  18.