blob: ce686aefe1f50c7a867d5b3f185d893c48cf0f7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
definition module ipc;
//1.3
from StdString import String;
//3.1
open_pipes :: !String !String -> Int;
// int open_pipes (CleanString commands_name,CleanString results_name);
get_command_length :: Int;
// int get_command_length ();
get_command :: !String -> Int;
// int get_command (CleanString cleanString);
send_result :: !Int -> Int;
// int send_result (int result);
|