ocarina/include/gui/playlists/artist.h
Anna Schumaker 83a21863b9 gui/sidebar: Select the current playlist on startup
Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2017-04-04 11:27:45 -04:00

20 lines
509 B
C

/*
* Copyright 2016 (c) Anna Schumaker.
*/
#ifndef OCARINA_GUI_PLAYLISTS_ARTIST_H
#define OCARINA_GUI_PLAYLISTS_ARTIST_H
/* Called to initialize GUI artist playlists. */
void gui_pl_artist_init();
/* Called to add an artist playlist. */
bool gui_pl_artist_add(struct playlist *);
/* Called to update an artist playlist. */
void gui_pl_artist_update(struct playlist *);
/* Called to select an artist playlist. */
void gui_pl_artist_select(struct playlist *);
#endif /* OCARINA_GUI_PLAYLISTS_ARTIST_H */