diff options
| author | Gary Scavone <gary@music.mcgill.ca> | 2013-10-11 14:49:10 +0200 |
|---|---|---|
| committer | Stephen Sinclair <sinclair@music.mcgill.ca> | 2013-10-11 14:49:10 +0200 |
| commit | 9bbab359f008990f89ec574558d528a2f3b55d04 (patch) | |
| tree | 55561ad2e2aa7dc5f27d6d45385e2bd7329f2104 /RtMidi.cpp | |
| parent | 2e8253577d3acd120d85981f186634f2550087cd (diff) | |
Version 1.0.7
Diffstat (limited to 'RtMidi.cpp')
| -rw-r--r-- | RtMidi.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -8,7 +8,7 @@ RtMidi WWW site: http://music.mcgill.ca/~gary/rtmidi/ RtMidi: realtime MIDI i/o C++ classes - Copyright (c) 2003-2006 Gary P. Scavone + Copyright (c) 2003-2007 Gary P. Scavone Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files @@ -35,7 +35,7 @@ */ /**********************************************************************/ -// RtMidi: Version 1.0.6 +// RtMidi: Version 1.0.7 #include "RtMidi.h" #include <sstream> @@ -1923,7 +1923,7 @@ std::string RtMidiIn :: getPortName( unsigned int portNumber ) } MIDIINCAPS deviceCaps; - MMRESULT result = midiInGetDevCaps( portNumber, &deviceCaps, sizeof(MIDIINCAPS)); + midiInGetDevCaps( portNumber, &deviceCaps, sizeof(MIDIINCAPS)); // For some reason, we need to copy character by character with // UNICODE (thanks to Eduardo Coutinho!). @@ -1957,7 +1957,7 @@ std::string RtMidiOut :: getPortName( unsigned int portNumber ) } MIDIOUTCAPS deviceCaps; - MMRESULT result = midiOutGetDevCaps( portNumber, &deviceCaps, sizeof(MIDIOUTCAPS)); + midiOutGetDevCaps( portNumber, &deviceCaps, sizeof(MIDIOUTCAPS)); // For some reason, we need to copy character by character with // UNICODE (thanks to Eduardo Coutinho!). |
