haiku/src/tools/fs_shell/fssh_additional_commands.cpp
Axel Dörfler 360a644650 Implemented support for file system specific commands.
* File system specific shell implementations can now register any additional
  commands by implementing the register_additional_commands() function.
2012-02-29 22:12:37 +01:00

21 lines
294 B
C++

/*
* Copyright 2012, Axel Dörfler, axeld@pinc-software.de.
* Distributed under the terms of the MIT License.
*/
#include "fssh.h"
namespace FSShell {
void
register_additional_commands()
{
// To be implemented by file system specific shell implementations.
}
} // namespace FSShell