1 /*****************************************************************************
2 ** $Source: /cvsroot/bluemsx/blueMSX/Src/Linux/blueMSXlite/LinuxMidi.c,v $
3 **
4 ** $Revision: 1.2 $
5 **
6 ** $Date: 2006/06/13 18:50:46 $
7 **
8 ** More info: http://www.bluemsx.com
9 **
10 ** Copyright (C) 2003-2004 Daniel Vikl, Tomas Karlsson
11 **
12 **  This software is provided 'as-is', without any express or implied
13 **  warranty.  In no event will the authors be held liable for any damages
14 **  arising from the use of this software.
15 **
16 **  Permission is granted to anyone to use this software for any purpose,
17 **  including commercial applications, and to alter it and redistribute it
18 **  freely, subject to the following restrictions:
19 **
20 **  1. The origin of this software must not be misrepresented; you must not
21 **     claim that you wrote the original software. If you use this software
22 **     in a product, an acknowledgment in the product documentation would be
23 **     appreciated but is not required.
24 **  2. Altered source versions must be plainly marked as such, and must not be
25 **     misrepresented as being the original software.
26 **  3. This notice may not be removed or altered from any source distribution.
27 **
28 ******************************************************************************
29 */
30 #include "ArchMidi.h"
31 #include <stdlib.h>
32 
archMidiEnable(int enable)33 void archMidiEnable(int enable) {}
archMidiGetNoteOn()34 int  archMidiGetNoteOn() { return 0; }
archMidiUpdateVolume(int left,int right)35 void archMidiUpdateVolume(int left, int right) {}
archMidiLoadState(void)36 void archMidiLoadState(void) {}
archMidiSaveState(void)37 void archMidiSaveState(void) {}
archMidiInCreate(int device,ArchMidiInCb cb,void * ref)38 ArchMidi* archMidiInCreate(int device, ArchMidiInCb cb, void* ref) { return NULL; }
archMidiInDestroy(ArchMidi * archMidi)39 void archMidiInDestroy(ArchMidi* archMidi) {}
archMidiInGetNoteOn(ArchMidi * archMidi,int note)40 int archMidiInGetNoteOn(ArchMidi* archMidi, int note) { return 0; }
archMidiOutCreate(int device)41 ArchMidi* archMidiOutCreate(int device) { return NULL; }
archMidiOutDestroy(ArchMidi * archMidi)42 void archMidiOutDestroy(ArchMidi* archMidi) {}
archMidiOutTransmit(ArchMidi * archMidi,UInt8 value)43 void archMidiOutTransmit(ArchMidi* archMidi, UInt8 value) {}
44 
45 
46