diff options
author | Max Kellermann <max@duempel.org> | 2013-01-27 22:32:10 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-27 22:38:14 +0100 |
commit | 0988056471fefa2ee195a170dcf57771e7926a08 (patch) | |
tree | b1e7535d4100756006b61d1a03f60eaad6e1f9b7 /src/ZeroconfGlue.hxx | |
parent | 95c3f57b3027e0961a1e32036dcce0383fb5e6ee (diff) | |
download | mpd-0988056471fefa2ee195a170dcf57771e7926a08.tar.gz mpd-0988056471fefa2ee195a170dcf57771e7926a08.tar.xz mpd-0988056471fefa2ee195a170dcf57771e7926a08.zip |
ZeroconfBonjour: use SocketMonitor instead of GIOChannel
Diffstat (limited to '')
-rw-r--r-- | src/ZeroconfGlue.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ZeroconfGlue.hxx b/src/ZeroconfGlue.hxx index dcd7b81c0..2a291ce29 100644 --- a/src/ZeroconfGlue.hxx +++ b/src/ZeroconfGlue.hxx @@ -22,10 +22,12 @@ #include "check.h" +class EventLoop; + #ifdef HAVE_ZEROCONF void -ZeroconfInit(); +ZeroconfInit(EventLoop &loop); void ZeroconfDeinit(); @@ -33,7 +35,7 @@ ZeroconfDeinit(); #else /* ! HAVE_ZEROCONF */ static inline void -ZeroconfInit() +ZeroconfInit(EventLoop &) {} static inline void |