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/Client.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/Client.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Client.hxx b/src/Client.hxx index d442d89b2..37bf69409 100644 --- a/src/Client.hxx +++ b/src/Client.hxx @@ -27,15 +27,14 @@ #include <stdarg.h> struct sockaddr; -struct playlist; -struct player_control; +struct Partition; class Client; void client_manager_init(void); void client_manager_deinit(void); void -client_new(struct playlist &playlist, struct player_control *player_control, +client_new(Partition &partition, int fd, const struct sockaddr *sa, size_t sa_length, int uid); gcc_pure |