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 11 static const char *kFSShellCommandPort = "fs shell command port"; 12 static const int kMaxCommandLength = 102400; 13 14 struct external_command_message { 15 port_id reply_port; 16 char command[1]; 17 }; 18 19 struct external_command_reply { 20 int error; 21 }; 22 23 #endif // FS_SHELL_COMMAND_BEOS_H 24