ocarina/include/gui/playlists/user.h

20 lines
513 B
C

/*
* Copyright 2015 (c) Anna Schumaker.
*/
#ifndef OCARINA_GUI_PLAYLISTS_USER_H
#define OCARINA_GUI_PLAYLISTS_USER_H
/* Called to initialize GUI user playlists. */
void gui_pl_user_init();
/* Called to add a user playlist. */
struct playlist *gui_pl_user_add(const gchar *);
/* Called to add a user playlist (with dialog prompt). */
struct playlist *gui_pl_user_add_dialog(void);
/* Called to update a user playlist. */
void gui_pl_user_update(struct playlist *);
#endif /* OCARINA_GUI_PLAYLISTS_USER_H */