aboutsummaryrefslogtreecommitdiff
path: root/src/dbUtils.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2011-09-05 23:09:20 +0200
committerMax Kellermann <max@duempel.org>2011-09-06 00:03:51 +0200
commit6a6f28668f3c0e7a3a5dcc01def62f311b06f210 (patch)
tree6819854c19ed50183253ec427fdefc69052844f3 /src/dbUtils.h
parentdadf1339b57d76057b7a66dce7d3b7b2f7d796f6 (diff)
dbUtils: move code to db_print.c
Diffstat (limited to 'src/dbUtils.h')
-rw-r--r--src/dbUtils.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/dbUtils.h b/src/dbUtils.h
index 96ea2095..95c88113 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