19 lines
209 B
C
19 lines
209 B
C
#ifndef AUDIO_H
|
|
#define AUDIO_H
|
|
|
|
#include "playlist.h"
|
|
|
|
extern bool audioMute;
|
|
|
|
extern float audioVolume;
|
|
|
|
bool audioPlay(const Entry &entry);
|
|
|
|
void audioStop();
|
|
|
|
void audioSetup();
|
|
|
|
bool audioLoop();
|
|
|
|
#endif
|