BridgeDriver.mesa
Demers, February 20, 1987 8:53:17 pm PST
DIRECTORY
Rope
USING [
ROPE]
;
BridgeDriver:
CEDAR
DEFINITIONS
~ {
ROPE:
TYPE ~ Rope.
ROPE;
StartSession:
PROC [sessionName:
ROPE, userName:
ROPE, passwd:
ROPE, cmd:
ROPE ←
NIL]
RETURNS [excuse:
ROPE ←
NIL];
KillSession:
PROC [name:
ROPE]
RETURNS [excuse:
ROPE ←
NIL];
ListSessions:
PROC
RETURNS [list:
LIST
OF
ROPE ←
NIL];
}...