/** Copyright 2005, Haiku Inc. All rights reserved.* Distributed under the terms of the MIT License.*/#ifndef FS_SHELL_COMMAND_BEOS_H#define FS_SHELL_COMMAND_BEOS_H#include <OS.h>static const char *kFSShellCommandPort = "fs shell command port";static const int kMaxCommandLength = 102400;struct external_command_message {port_id reply_port;char command[1];};struct external_command_reply {int error;};#endif // FS_SHELL_COMMAND_BEOS_H