1 /*
2     MIDIDebug : Debug interface for accompanying MIDI parser and player
3     Copyright (c) 2004-2016 Adrian M. Gin
4 
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License v2 as published by
7     the Free Software Foundation;
8 
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13 
14     You should have received a copy of the GNU General Public License along
15     with this program; if not, write to the Free Software Foundation, Inc.,
16     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 
18     The above copyright notice and this permission notice shall be
19     included in all copies or substantial portions of the Software.
20 
21 */
22 
23 #include <stdio.h>
24 #include <stdint.h>
25 #include "MIDIDebug.h"
26 
27 
MIDI_Printf(const char * string,uint32_t data)28 void MIDI_Printf(const char* string, uint32_t data)
29 {
30    //printf("%s%d\n", string, data);
31 }
32 
33