diff options
Diffstat (limited to 'src/command/StorageCommands.hxx')
-rw-r--r-- | src/command/StorageCommands.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/command/StorageCommands.hxx b/src/command/StorageCommands.hxx index 4a96b4058..f5f962042 100644 --- a/src/command/StorageCommands.hxx +++ b/src/command/StorageCommands.hxx @@ -24,7 +24,7 @@ class Client; class Storage; -template<typename T> struct ConstBuffer; +class Request; CommandResult handle_listfiles_storage(Client &client, Storage &storage, const char *uri); @@ -33,12 +33,12 @@ CommandResult handle_listfiles_storage(Client &client, const char *uri); CommandResult -handle_listmounts(Client &client, ConstBuffer<const char *> args); +handle_listmounts(Client &client, Request args); CommandResult -handle_mount(Client &client, ConstBuffer<const char *> args); +handle_mount(Client &client, Request args); CommandResult -handle_unmount(Client &client, ConstBuffer<const char *> args); +handle_unmount(Client &client, Request args); #endif |