[Xfce4-commits] [panel-plugins/xfce4-mpc-plugin] 01/02: Declare local functions beforehand to silence warnings
noreply at xfce.org
noreply at xfce.org
Fri Dec 7 19:55:30 CET 2018
This is an automated email from the git hooks/post-receive script.
l a n d r y p u s h e d a c o m m i t t o b r a n c h m a s t e r
in repository panel-plugins/xfce4-mpc-plugin.
commit ec80c2d0e5d0b8523f6b7effb1fddeadc6f84516
Author: Landry Breuil <landry at xfce.org>
Date: Fri Dec 7 19:50:10 2018 +0100
Declare local functions beforehand to silence warnings
---
panel-plugin/simple-libmpd.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/panel-plugin/simple-libmpd.c b/panel-plugin/simple-libmpd.c
index 87ad6e7..526f305 100644
--- a/panel-plugin/simple-libmpd.c
+++ b/panel-plugin/simple-libmpd.c
@@ -37,6 +37,14 @@
#include <errno.h>
#include <fcntl.h>
+int mpd_wait_for_answer(MpdObj *);
+int mpd_send_single_cmd(MpdObj*, char*);
+void send_complex_cmd(MpdObj*, char*, void (*)(), void *);
+void parse_status_answer(MpdObj*, void*);
+void parse_one_song(MpdObj*, void*);
+void parse_playlistinfo_answer(MpdObj*, void*);
+void parse_outputs_answer(MpdObj*, void*);
+
MpdObj* mpd_new(char* host, int port, char* pass)
{
MpdObj* mo = g_new0(MpdObj,1);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list