Accommodate the fact that 'msvc_resources.rc.in' got moved to a new path
[ardour.git] / libs / midi++2 / mmctest.cc
index 527e1491eac295f16bd0af9ddbbbec3b77fe0b71..e81126cba7a9289eaad66a2d21091ac213d25325 100644 (file)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2012 Paul Davis
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
 #include <cstdio>
 #include <fcntl.h>
 
@@ -24,7 +43,7 @@ MachineControl *mmc;
 MachineControl::CommandSignature cs;
 MachineControl::ResponseSignature rs;
 
-int 
+int
 setup_midi ()
 
 {
@@ -36,7 +55,7 @@ setup_midi ()
        if ((port = MIDI::Manager::instance()->add_port (midi_device)) == 0) {
                info << "MIDI port is not valid" << endmsg;
                return -1;
-       } 
+       }
 
        mmc = new MachineControl (*port, 0.0, cs, rs);
 
@@ -83,7 +102,7 @@ main (int argc, char *argv[])
 
 {
        byte buf[1];
-       
+
        text_receiver.listen_to (error);
        text_receiver.listen_to (info);
        text_receiver.listen_to (fatal);
@@ -105,7 +124,7 @@ main (int argc, char *argv[])
                        error << "cannot read byte"
                              << endmsg;
                        break;
-               } 
+               }
        }
 }