Radio/src/audio.h
2025-06-05 21:13:30 +02:00

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