1 |
|
/* |
2 |
|
* audio_dummy.cpp - Audio support, dummy implementation |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-1999 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2000 Christian Bauer |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
131 |
|
return 0x01000100; |
132 |
|
} |
133 |
|
|
134 |
< |
bool audio_get_dac_mute(void) |
134 |
> |
bool audio_get_speaker_mute(void) |
135 |
|
{ |
136 |
|
return false; |
137 |
|
} |
138 |
|
|
139 |
< |
uint32 audio_get_dac_volume(void) |
139 |
> |
uint32 audio_get_speaker_volume(void) |
140 |
|
{ |
141 |
|
return 0x01000100; |
142 |
|
} |
149 |
|
{ |
150 |
|
} |
151 |
|
|
152 |
< |
void audio_set_dac_mute(bool mute) |
152 |
> |
void audio_set_speaker_mute(bool mute) |
153 |
|
{ |
154 |
|
} |
155 |
|
|
156 |
< |
void audio_set_dac_volume(uint32 vol) |
156 |
> |
void audio_set_speaker_volume(uint32 vol) |
157 |
|
{ |
158 |
|
} |