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/playlist.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/playlist.h')
-rw-r--r-- | src/playlist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/playlist.h b/src/playlist.h index 7fe10cb40..e05fe0530 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -19,7 +19,6 @@ #ifndef MPD_PLAYLIST_H #define MPD_PLAYLIST_H -#include "locate.h" #include "queue.h" #include <stdbool.h> @@ -28,6 +27,7 @@ #define PLAYLIST_COMMENT '#' struct client; +struct locate_item; enum playlist_result { PLAYLIST_RESULT_SUCCESS, @@ -177,11 +177,11 @@ void playlistVersionChange(void); void searchForSongsInPlaylist(struct client *client, - unsigned numItems, const LocateTagItem *items); + unsigned numItems, const struct locate_item *items); void findSongsInPlaylist(struct client *client, - unsigned numItems, const LocateTagItem *items); + unsigned numItems, const struct locate_item *items); int is_valid_playlist_name(const char *utf8path); |