aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/TagCommands.hxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/command/TagCommands.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/command/TagCommands.hxx b/src/command/TagCommands.hxx
index 748838e68..ee7c27bb9 100644
--- a/src/command/TagCommands.hxx
+++ b/src/command/TagCommands.hxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2014 The Music Player Daemon Project
+ * Copyright (C) 2003-2015 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -23,11 +23,12 @@
#include "CommandResult.hxx"
class Client;
+template<typename T> struct ConstBuffer;
CommandResult
-handle_addtagid(Client &client, unsigned argc, char *argv[]);
+handle_addtagid(Client &client, ConstBuffer<const char *> args);
CommandResult
-handle_cleartagid(Client &client, unsigned argc, char *argv[]);
+handle_cleartagid(Client &client, ConstBuffer<const char *> args);
#endif