diff options
author | Max Kellermann <max@duempel.org> | 2013-01-07 10:59:56 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-07 10:59:56 +0100 |
commit | d360f17a59fe6ed52ffa74c48c63164cf203d1e0 (patch) | |
tree | dea0df6cb96909f083f89e4d89a48ee82aef9f13 /src/DatabaseQueue.hxx | |
parent | a6ee6be9602f64599b40e01321bd771b17d94f39 (diff) | |
download | mpd-d360f17a59fe6ed52ffa74c48c63164cf203d1e0.tar.gz mpd-d360f17a59fe6ed52ffa74c48c63164cf203d1e0.tar.xz mpd-d360f17a59fe6ed52ffa74c48c63164cf203d1e0.zip |
Client: add Partition reference attribute
playlist and player_control are deprecated.
Diffstat (limited to '')
-rw-r--r-- | src/DatabaseQueue.hxx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/DatabaseQueue.hxx b/src/DatabaseQueue.hxx index 50ed7d03a..14947d5d5 100644 --- a/src/DatabaseQueue.hxx +++ b/src/DatabaseQueue.hxx @@ -24,13 +24,12 @@ #include "gerror.h" class SongFilter; -struct playlist; -struct player_control; +struct Partition; -gcc_nonnull(2,3) +gcc_nonnull(2) bool -findAddIn(struct playlist &playlist, struct player_control *pc, - const char *name, - const SongFilter *filter, GError **error_r); +AddFromDatabase(Partition &partition, + const char *name, + const SongFilter *filter, GError **error_r); #endif |