diff options
author | Max Kellermann <max@duempel.org> | 2013-10-20 13:10:54 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-20 13:10:54 +0200 |
commit | cf4d80fc655a399615529bdd27e0be284754c5ab (patch) | |
tree | 531f5c7af53ce4abdfd9013cbbc9e8056c934e5a /src/StickerCommands.hxx | |
parent | 8118bc93a85a903ddf95825c1ce7ecbbfff4780b (diff) | |
download | mpd-cf4d80fc655a399615529bdd27e0be284754c5ab.tar.gz mpd-cf4d80fc655a399615529bdd27e0be284754c5ab.tar.xz mpd-cf4d80fc655a399615529bdd27e0be284754c5ab.zip |
command: convert command_return to to a strictly-typed enum
Diffstat (limited to 'src/StickerCommands.hxx')
-rw-r--r-- | src/StickerCommands.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/StickerCommands.hxx b/src/StickerCommands.hxx index 0aaa74de0..fb91a8ad3 100644 --- a/src/StickerCommands.hxx +++ b/src/StickerCommands.hxx @@ -20,11 +20,11 @@ #ifndef MPD_STICKER_COMMANDS_HXX #define MPD_STICKER_COMMANDS_HXX -#include "command.h" +#include "CommandResult.hxx" class Client; -enum command_return +CommandResult handle_sticker(Client &client, int argc, char *argv[]); #endif |