/* * Copyright (C) 2006 Stas Sergeev * * The below copyright strings have to be distributed unchanged together * with this file. This prefix can not be modified or separated. */ /* * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef __DSPIO_H__ #define __DSPIO_H__ extern void *dspio_init(void); extern void dspio_reset(void *dspio); extern void dspio_done(void *dspio); extern void dspio_start_dma(void *dspio); extern void dspio_stop_dma(void *dspio); extern void dspio_stop_midi(void *dspio); extern void dspio_toggle_speaker(void *dspio, int on); extern int dspio_get_speaker_state(void *dspio); extern Bit32u dspio_get_midi_in_time(void *dspio); extern void dspio_write_dac(void *dspio, Bit8u samp); extern void dspio_timer(void *dspio); extern void dspio_run_synth(void); extern void dspio_write_midi(void *dspio, Bit8u value); extern void dspio_clear_fifos(void *dspio); extern Bit8u dspio_get_midi_in_byte(void *dspio); extern void dspio_put_midi_in_byte(void *dspio, Bit8u val); extern int dspio_get_midi_in_fillup(void *dspio); extern void dspio_clear_midi_in_fifo(void *dspio); #endif