1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#include "speaker.h" Sound s; void SpeakerInit(){ InitAudioDevice(); // Initialize audio device s=LoadSound(SPEAKER_AUDIO_FILE); } void SpeakerOn(){ PlaySound(s); } void SpeakerOff(){ StopSound(s); } void SpeakerFinish(){ CloseAudioDevice(); }