src/stored_playlist.h File Reference
#include <glib.h>
#include <stdbool.h>
#include <time.h>
Go to the source code of this file.
Data Structures |
struct | stored_playlist_info |
Functions |
void | spl_global_init (void) |
| Perform some global initialization, e.g.
|
bool | spl_valid_name (const char *name_utf8) |
| Determines whether the specified string is a valid name for a stored playlist.
|
GPtrArray * | spl_list (GError **error_r) |
| Returns a list of stored_playlist_info struct pointers.
|
void | spl_list_free (GPtrArray *list) |
GPtrArray * | spl_load (const char *utf8path, GError **error_r) |
void | spl_free (GPtrArray *list) |
bool | spl_move_index (const char *utf8path, unsigned src, unsigned dest, GError **error_r) |
bool | spl_clear (const char *utf8path, GError **error_r) |
bool | spl_delete (const char *name_utf8, GError **error_r) |
bool | spl_remove_index (const char *utf8path, unsigned pos, GError **error_r) |
bool | spl_append_song (const char *utf8path, struct song *song, GError **error_r) |
bool | spl_append_uri (const char *file, const char *utf8file, GError **error_r) |
bool | spl_rename (const char *utf8from, const char *utf8to, GError **error_r) |
Variables |
bool | playlist_saveAbsolutePaths |
Function Documentation
bool spl_append_song |
( |
const char * |
utf8path, |
|
|
struct song * |
song, |
|
|
GError ** |
error_r | |
|
) |
| | |
bool spl_append_uri |
( |
const char * |
file, |
|
|
const char * |
utf8file, |
|
|
GError ** |
error_r | |
|
) |
| | |
bool spl_clear |
( |
const char * |
utf8path, |
|
|
GError ** |
error_r | |
|
) |
| | |
bool spl_delete |
( |
const char * |
name_utf8, |
|
|
GError ** |
error_r | |
|
) |
| | |
void spl_free |
( |
GPtrArray * |
list |
) |
|
void spl_global_init |
( |
void |
|
) |
|
Perform some global initialization, e.g.
load configuration values.
GPtrArray* spl_list |
( |
GError ** |
error_r |
) |
|
void spl_list_free |
( |
GPtrArray * |
list |
) |
|
GPtrArray* spl_load |
( |
const char * |
utf8path, |
|
|
GError ** |
error_r | |
|
) |
| | |
bool spl_move_index |
( |
const char * |
utf8path, |
|
|
unsigned |
src, |
|
|
unsigned |
dest, |
|
|
GError ** |
error_r | |
|
) |
| | |
bool spl_remove_index |
( |
const char * |
utf8path, |
|
|
unsigned |
pos, |
|
|
GError ** |
error_r | |
|
) |
| | |
bool spl_rename |
( |
const char * |
utf8from, |
|
|
const char * |
utf8to, |
|
|
GError ** |
error_r | |
|
) |
| | |
bool spl_valid_name |
( |
const char * |
name_utf8 |
) |
|
Determines whether the specified string is a valid name for a stored playlist.
Variable Documentation