fplayer
C99 Falcon Sequence (fseq) file player for Light-O-Rama hardware (like xLights)
Loading...
Searching...
No Matches
audio.h
Go to the documentation of this file.
1
3#ifndef FPLAYER_AUDIO_H
4#define FPLAYER_AUDIO_H
5
6#include <stdbool.h>
7
12void Audio_exit(void);
13
17bool Audio_isPlaying(void);
18
25int Audio_play(const char* fp);
26
27#endif//FPLAYER_AUDIO_H
void Audio_exit(void)
Exits the audio system and frees all resources. This function should be called before the program exi...
Definition audio.c:71
bool Audio_isPlaying(void)
Checks the playback status of the audio system.
Definition audio.c:81
int Audio_play(const char *fp)
Attempts to play the audio file at the given file path. This function initializes the audio system if...
Definition audio.c:94