diff options
Diffstat (limited to 'src/ui.h')
-rw-r--r-- | src/ui.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -24,6 +24,8 @@ THE SOFTWARE. #ifndef _UI_H #define _UI_H +#include <stdbool.h> + #include <piano.h> #include <waitress.h> @@ -37,7 +39,7 @@ typedef void (*BarUiSelectStationCallback_t) (BarApp_t *app, char *buf); void BarUiMsg (const BarSettings_t *, const BarUiMsg_t, const char *, ...); PianoStation_t *BarUiSelectStation (BarApp_t *, PianoStation_t *, const char *, - BarUiSelectStationCallback_t); + BarUiSelectStationCallback_t, bool); PianoSong_t *BarUiSelectSong (const BarSettings_t *, PianoSong_t *, BarReadlineFds_t *); PianoArtist_t *BarUiSelectArtist (BarApp_t *, PianoArtist_t *); |