diff options
author | Max Kellermann <max@duempel.org> | 2008-09-15 12:27:29 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-15 12:27:29 +0200 |
commit | 76a8fab4adc293982f355609b89dde88d5f355e0 (patch) | |
tree | b8fe58ce54cade4122402c57328a9691064b2590 /src/mpdclient.h | |
parent | 0b3bcb6c7f1bb4a633896b8a9936e498570ef8e1 (diff) | |
download | mpd-76a8fab4adc293982f355609b89dde88d5f355e0.tar.gz mpd-76a8fab4adc293982f355609b89dde88d5f355e0.tar.xz mpd-76a8fab4adc293982f355609b89dde88d5f355e0.zip |
fix function prototypes
Add missing prototypes, and fix wrong prototypes. Convert lots of
functions to "static" when they are only used within the current
source file.
Diffstat (limited to '')
-rw-r--r-- | src/mpdclient.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mpdclient.h b/src/mpdclient.h index 5f231c383..c8cb8686b 100644 --- a/src/mpdclient.h +++ b/src/mpdclient.h @@ -69,6 +69,10 @@ typedef struct } mpdclient_t; /** functions ***************************************************************/ + +gint +mpdclient_finish_command(mpdclient_t *c); + mpdclient_t *mpdclient_new(void); mpdclient_t *mpdclient_free(mpdclient_t *c); gint mpdclient_connect(mpdclient_t *c, gchar *host, gint port, |