diff options
author | Max Kellermann <max@duempel.org> | 2009-01-24 15:56:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-24 15:56:34 +0100 |
commit | 6a2118d04c7b73450edfffb6fdc40de1a05bfe94 (patch) | |
tree | 26b72b675bc6dcf864e58d4e9ff2a4869aa48f0c /src/queue_print.h | |
parent | ba7c9962663d2e80a6320ca097c06a0849218d27 (diff) | |
download | mpd-6a2118d04c7b73450edfffb6fdc40de1a05bfe94.tar.gz mpd-6a2118d04c7b73450edfffb6fdc40de1a05bfe94.tar.xz mpd-6a2118d04c7b73450edfffb6fdc40de1a05bfe94.zip |
queue_print, dbUtils: use struct locate_item_list
Changed the function prototypes to get locate_item_list objects
instead of num_items/items.
Diffstat (limited to 'src/queue_print.h')
-rw-r--r-- | src/queue_print.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/queue_print.h b/src/queue_print.h index 11740bb37..038d86d4f 100644 --- a/src/queue_print.h +++ b/src/queue_print.h @@ -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 |