/* WMix 3.0 -- a mixer using the OSS mixer API. * Copyright (C) 2000, 2001 * Daniel Richard G. , * timecop * * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ void mixer_alsa_init(const char *mixer_oss_device, bool verbose, const char *exclude[]); bool mixer_alsa_is_changed(void); int mixer_alsa_get_channel_count(void); int mixer_alsa_get_channel(void); const char *mixer_alsa_get_channel_name(void); const char *mixer_alsa_get_short_name(void); void mixer_alsa_set_channel(int channel); void mixer_alsa_set_channel_rel(int delta_channel); float mixer_alsa_get_volume(void); void mixer_alsa_set_volume(float volume); void mixer_alsa_set_volume_rel(float delta_volume); float mixer_alsa_get_balance(void); void mixer_alsa_set_balance(float balance); void mixer_alsa_set_balance_rel(float delta_balance); void mixer_alsa_toggle_mute(void); void mixer_alsa_toggle_rec(void); bool mixer_alsa_is_muted(void); bool mixer_alsa_is_stereo(void); bool mixer_alsa_is_rec(void); bool mixer_alsa_can_rec (void); void mixer_alsa_tick(void);