summaryrefslogtreecommitdiff
path: root/playlist.h
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-02-24 22:24:58 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-02-24 22:24:58 +0100
commitf1f2c6a311853bea2c6e1d4b746dc6083395a8d1 (patch)
treeb479082e7bf16b28e43d17bab0d466cb0cfc15ab /playlist.h
parent48e960ff2cbb08d7a442df93d2113af507ccfe92 (diff)
playlist grouping WIP
Diffstat (limited to 'playlist.h')
-rw-r--r--playlist.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/playlist.h b/playlist.h
index c3a99107..7783f2e8 100644
--- a/playlist.h
+++ b/playlist.h
@@ -53,7 +53,6 @@ typedef struct playItem_s {
unsigned selected : 1;
unsigned played : 1; // mark as played in shuffle mode
unsigned in_playlist : 1; // 1 if item is in playlist
- unsigned is_group_title : 1; // 1 if this is a group title
} playItem_t;
typedef struct playlist_s {
@@ -142,7 +141,7 @@ playItem_t *
pl_insert_item (playItem_t *after, playItem_t *it);
int
-pl_remove (playItem_t *i);
+pl_remove_item (playItem_t *i);
playItem_t *
pl_item_alloc (void);
@@ -153,9 +152,6 @@ pl_item_ref (playItem_t *it);
void
pl_item_unref (playItem_t *it);
-//void
-//pl_item_free (playItem_t *it);
-
void
pl_item_copy (playItem_t *out, playItem_t *it);
@@ -246,12 +242,6 @@ pl_set_selected (playItem_t *it, int sel);
int
pl_is_selected (playItem_t *it);
-int
-pl_is_group_title (playItem_t *it);
-
-void
-pl_group_by (const char *fmt);
-
playItem_t *
pl_get_first (int iter);