diff options
author | Max Kellermann <max@duempel.org> | 2013-01-16 21:46:13 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-16 21:46:13 +0100 |
commit | cab84af72e373acca0e88d9b407aa97796c083e0 (patch) | |
tree | b2b857febd150cf1cf76227b72919c0d17a6776e /src/ClientIdle.hxx | |
parent | 74500eaccac3fd906489a93e969b67440ae41f5c (diff) | |
download | mpd-cab84af72e373acca0e88d9b407aa97796c083e0.tar.gz mpd-cab84af72e373acca0e88d9b407aa97796c083e0.tar.xz mpd-cab84af72e373acca0e88d9b407aa97796c083e0.zip |
Client: move "idle" functions into the class
Diffstat (limited to '')
-rw-r--r-- | src/ClientIdle.hxx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/ClientIdle.hxx b/src/ClientIdle.hxx index a8c08b7aa..eb0efd1bf 100644 --- a/src/ClientIdle.hxx +++ b/src/ClientIdle.hxx @@ -20,11 +20,6 @@ #ifndef MPD_CLIENT_IDLE_HXX #define MPD_CLIENT_IDLE_HXX -class Client; - -void -client_idle_add(Client *client, unsigned flags); - /** * Adds the specified idle flags to all clients and immediately sends * notifications to all waiting clients. @@ -32,12 +27,4 @@ client_idle_add(Client *client, unsigned flags); void client_manager_idle_add(unsigned flags); -/** - * Checks whether the client has pending idle flags. If yes, they are - * sent immediately and "true" is returned". If no, it puts the - * client into waiting mode and returns false. - */ -bool -client_idle_wait(Client *client, unsigned flags); - #endif |