diff options
author | Max Kellermann <max@duempel.org> | 2008-10-31 09:17:56 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-31 09:17:56 +0100 |
commit | 90e9079142f533c9a30f3431e03b49bbf4f73a77 (patch) | |
tree | 517f7833796d96a67adf9e855cb43b254b04395d /src/command.h | |
parent | e5ef2d8a375865c8b5058c1107d2b32ce89b7c9d (diff) | |
download | mpd-90e9079142f533c9a30f3431e03b49bbf4f73a77.tar.gz mpd-90e9079142f533c9a30f3431e03b49bbf4f73a77.tar.xz mpd-90e9079142f533c9a30f3431e03b49bbf4f73a77.zip |
client: use GSList instead of struct strnode for command lists
Replace a custom data structure with a GLib one.
Diffstat (limited to '')
-rw-r--r-- | src/command.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command.h b/src/command.h index 763487c12..bcefd0376 100644 --- a/src/command.h +++ b/src/command.h @@ -20,9 +20,9 @@ #define COMMAND_H #include "gcc.h" -#include "sllist.h" #include "ack.h" +#include <glib.h> #include <stdbool.h> enum command_return { @@ -40,7 +40,7 @@ void command_finish(void); enum command_return command_process_list(struct client *client, - bool list_ok, struct strnode *list); + bool list_ok, GSList *list); enum command_return command_process(struct client *client, char *commandString); |