queue_print, dbUtils: use struct locate_item_list

Changed the function prototypes to get locate_item_list objects
instead of num_items/items.
This commit is contained in:
Max Kellermann
2009-01-24 15:56:34 +01:00
parent ba7c996266
commit 6a2118d04c
7 changed files with 58 additions and 74 deletions

View File

@@ -28,7 +28,7 @@
struct client;
struct queue;
struct locate_item;
struct locate_item_list;
void
queue_print_song_info(struct client *client, const struct queue *queue,
@@ -60,10 +60,10 @@ queue_print_changes_position(struct client *client, const struct queue *queue,
void
queue_search(struct client *client, const struct queue *queue,
unsigned num_items, const struct locate_item *items);
const struct locate_item_list *criteria);
void
queue_find(struct client *client, const struct queue *queue,
unsigned num_items, const struct locate_item *items);
const struct locate_item_list *criteria);
#endif