2026-02-15 16:14:36 -05:00
|
|
|
#ifndef GW_SOUND_H
|
|
|
|
|
#define GW_SOUND_H
|
|
|
|
|
|
|
|
|
|
void snd_init(void);
|
|
|
|
|
void snd_shutdown(void);
|
|
|
|
|
void snd_reset(void);
|
|
|
|
|
void snd_beep(void);
|
|
|
|
|
void snd_tone(int freq_hz, int duration_ticks);
|
|
|
|
|
void snd_tone_sync(int freq_hz, int duration_ticks);
|
|
|
|
|
void snd_play(const char *mml);
|
2026-03-28 18:27:19 -04:00
|
|
|
void snd_start_continuous(int freq_hz);
|
|
|
|
|
void snd_stop_continuous(void);
|
2026-02-15 16:14:36 -05:00
|
|
|
|
|
|
|
|
#endif
|