diff options
author | Max Kellermann <max@duempel.org> | 2009-01-24 14:52:05 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-24 14:52:05 +0100 |
commit | 53e712aca40d631bd26a2af4c0731aa8924cde5b (patch) | |
tree | 22654ae1cc2cfc2ef72c9fba38c8639064090ae8 /src/dbUtils.h | |
parent | 627d590ce524faf7ec197c54e65076107af27fe9 (diff) | |
download | mpd-53e712aca40d631bd26a2af4c0731aa8924cde5b.tar.gz mpd-53e712aca40d631bd26a2af4c0731aa8924cde5b.tar.xz mpd-53e712aca40d631bd26a2af4c0731aa8924cde5b.zip |
locate: renamed LocateTagItem to "struct locate_item"
No CamelCase and no typedefs.
Diffstat (limited to 'src/dbUtils.h')
-rw-r--r-- | src/dbUtils.h | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/src/dbUtils.h b/src/dbUtils.h index c7302a1b2..b32f6f41a 100644 --- a/src/dbUtils.h +++ b/src/dbUtils.h @@ -19,9 +19,8 @@ #ifndef MPD_DB_UTILS_H #define MPD_DB_UTILS_H -#include "locate.h" - struct client; +struct locate_item; int printAllIn(struct client *client, const char *name); @@ -31,19 +30,23 @@ int addAllInToStoredPlaylist(const char *name, const char *utf8file); int printInfoForAllIn(struct client *client, const char *name); -int searchForSongsIn(struct client *client, const char *name, - int numItems, const LocateTagItem * items); +int +searchForSongsIn(struct client *client, const char *name, + int numItems, const struct locate_item * items); -int findSongsIn(struct client *client, const char *name, - int numItems, const LocateTagItem * items); +int +findSongsIn(struct client *client, const char *name, + int numItems, const struct locate_item * items); -int searchStatsForSongsIn(struct client *client, const char *name, - int numItems, const LocateTagItem * items); +int +searchStatsForSongsIn(struct client *client, const char *name, + int numItems, const struct locate_item * items); unsigned long sumSongTimesIn(const char *name); -int listAllUniqueTags(struct client *client, int type, int numConditiionals, - const LocateTagItem *conditionals); +int +listAllUniqueTags(struct client *client, int type, int numConditiionals, + const struct locate_item *conditionals); void printSavedMemoryFromFilenames(void); |