1/*
2 * Copyright 2005, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef FS_SHELL_COMMAND_BEOS_H
6#define FS_SHELL_COMMAND_BEOS_H
7
8#include <OS.h>
9
10
11static const char *kFSShellCommandPort = "fs shell command port";
12static const int kMaxCommandLength = 102400;
13
14struct external_command_message {
15	port_id		reply_port;
16	char		command[1];
17};
18
19struct external_command_reply {
20	int			error;
21};
22
23#endif	// FS_SHELL_COMMAND_BEOS_H
24