diff options
author | Max Kellermann <max@duempel.org> | 2011-09-05 23:09:20 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-09-06 00:03:51 +0200 |
commit | 6a6f28668f3c0e7a3a5dcc01def62f311b06f210 (patch) | |
tree | 6819854c19ed50183253ec427fdefc69052844f3 /src/dbUtils.h | |
parent | dadf1339b57d76057b7a66dce7d3b7b2f7d796f6 (diff) | |
download | mpd-6a6f28668f3c0e7a3a5dcc01def62f311b06f210.tar.gz mpd-6a6f28668f3c0e7a3a5dcc01def62f311b06f210.tar.xz mpd-6a6f28668f3c0e7a3a5dcc01def62f311b06f210.zip |
dbUtils: move code to db_print.c
Diffstat (limited to '')
-rw-r--r-- | src/dbUtils.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/dbUtils.h b/src/dbUtils.h index 96ea2095d..95c881134 100644 --- a/src/dbUtils.h +++ b/src/dbUtils.h @@ -20,39 +20,18 @@ #ifndef MPD_DB_UTILS_H #define MPD_DB_UTILS_H -struct client; struct locate_item_list; struct player_control; -int printAllIn(struct client *client, const char *name); - int addAllIn(struct player_control *pc, const char *name); int addAllInToStoredPlaylist(const char *name, const char *utf8file); -int printInfoForAllIn(struct client *client, const char *name); - -int -searchForSongsIn(struct client *client, const char *name, - const struct locate_item_list *criteria); - -int -findSongsIn(struct client *client, const char *name, - const struct locate_item_list *criteria); - int findAddIn(struct player_control *pc, const char *name, const struct locate_item_list *criteria); -int -searchStatsForSongsIn(struct client *client, const char *name, - const struct locate_item_list *criteria); - unsigned long sumSongTimesIn(const char *name); -int -listAllUniqueTags(struct client *client, int type, - const struct locate_item_list *criteria); - #endif |