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:
+6
-6
@@ -20,7 +20,7 @@
|
||||
#define MPD_DB_UTILS_H
|
||||
|
||||
struct client;
|
||||
struct locate_item;
|
||||
struct locate_item_list;
|
||||
|
||||
int printAllIn(struct client *client, const char *name);
|
||||
|
||||
@@ -32,21 +32,21 @@ int printInfoForAllIn(struct client *client, const char *name);
|
||||
|
||||
int
|
||||
searchForSongsIn(struct client *client, const char *name,
|
||||
int numItems, const struct locate_item * items);
|
||||
const struct locate_item_list *criteria);
|
||||
|
||||
int
|
||||
findSongsIn(struct client *client, const char *name,
|
||||
int numItems, const struct locate_item * items);
|
||||
const struct locate_item_list *criteria);
|
||||
|
||||
int
|
||||
searchStatsForSongsIn(struct client *client, const char *name,
|
||||
int numItems, const struct locate_item * items);
|
||||
const struct locate_item_list *criteria);
|
||||
|
||||
unsigned long sumSongTimesIn(const char *name);
|
||||
|
||||
int
|
||||
listAllUniqueTags(struct client *client, int type, int numConditiionals,
|
||||
const struct locate_item *conditionals);
|
||||
listAllUniqueTags(struct client *client, int type,
|
||||
const struct locate_item_list *criteria);
|
||||
|
||||
void printSavedMemoryFromFilenames(void);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user