Diff for /np2/sound/vermouth/midiout.c between versions 1.8 and 1.10

version 1.8, 2003/12/25 12:08:04 version 1.10, 2005/02/07 14:46:13
Line 2 Line 2
 #include        "midiout.h"  #include        "midiout.h"
   
   
 #define MIDIOUT_VERSION         0x104  #define MIDIOUT_VERSION         0x105
 #define MIDIOUT_VERSTRING       "VERMOUTH 1.04"  #define MIDIOUT_VERSTRING       "VERMOUTH 1.05"
   
   
 static const char vermouthver[] = MIDIOUT_VERSTRING;  static const char vermouthver[] = MIDIOUT_VERSTRING;
Line 732  void midiout_shortmsg(MIDIHDL hdl, UINT3 Line 732  void midiout_shortmsg(MIDIHDL hdl, UINT3
         }          }
 }  }
   
 static void longmsg_gm(MIDIHDL hdl, const BYTE *msg, UINT size) {  static void longmsg_gm(MIDIHDL hdl, const UINT8 *msg, UINT size) {
   
         if ((size > 5) && (msg[2] == 0x7f) && (msg[3] == 0x09)) {          if ((size > 5) && (msg[2] == 0x7f) && (msg[3] == 0x09)) {
                 allresetmidi(hdl);                                              // GM reset                  allresetmidi(hdl);                                              // GM reset
         }          }
 }  }
   
 static void longmsg_roland(MIDIHDL hdl, const BYTE *msg, UINT size) {  static void longmsg_roland(MIDIHDL hdl, const UINT8 *msg, UINT size) {
   
         UINT    addr;          UINT    addr;
         UINT    part;          UINT    part;
Line 780  static void longmsg_roland(MIDIHDL hdl,  Line 780  static void longmsg_roland(MIDIHDL hdl, 
         }          }
 }  }
   
 void midiout_longmsg(MIDIHDL hdl, const BYTE *msg, UINT size) {  void midiout_longmsg(MIDIHDL hdl, const UINT8 *msg, UINT size) {
   
         UINT    id;          UINT    id;
   

Removed from v.1.8  
changed lines
  Added in v.1.10


RetroPC.NET-CVS <cvs@retropc.net>