shithub: choc

ref: 73eac9f95f513260a106f10cf9f8501ccc7eb36c
dir: /src/i_midisocket.h/

View raw version
//
// Copyright(C) 2013 James Haley et al.
// Copyright(C) 2017 Alex Mayfield
//
// 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.
//
// DESCRIPTION:
//     Client Interface to RPC Midi Server
//

#ifndef __I_MIDISOCKET__
#define __I_MIDISOCKET__

#if _WIN32

#include "doomtype.h"

boolean I_MidiSocketInitServer();
boolean I_MidiSocketInitClient();
void I_MidiSocketClientShutDown();
boolean I_MidiSocketReady();

boolean I_MidiSocketRegisterSong(const char *filename);
boolean I_MidiSocketPlaySong(boolean looping);
boolean I_MidiSocketStopSong();
boolean I_MidiSocketSetVolume(int volume);
boolean I_MidiSocketPauseSong();
boolean I_MidiSocketResumeSong();

#endif

#endif