command: use ConstBuffer<const char *> for argument list

This commit is contained in:
Max Kellermann
2014-12-06 00:08:08 +01:00
parent 5837a63942
commit 6edfc56c9d
25 changed files with 417 additions and 420 deletions

View File

@@ -23,8 +23,9 @@
#include "CommandResult.hxx"
class Client;
template<typename T> struct ConstBuffer;
CommandResult
handle_sticker(Client &client, unsigned argc, char *argv[]);
handle_sticker(Client &client, ConstBuffer<const char *> args);
#endif