VoiceRopeServerSunImport.mesa
Copyright © 1990 by Xerox Corporation. All rights reserved.
Polle Zellweger (PTZ) August 9, 1990 6:48:00 pm PDT
Swinehart, September 16, 1990 5:45:27 pm PDT
DIRECTORY
Rope USING [ ROPE ],
Thrush USING [SHHH ]
;
VoiceRopeServerSunImport: CEDAR DEFINITIONS
~ BEGIN
ReportProblem: TYPE ~ PROC[reportData: REF, ec: ATOM, expl: Rope.ROPE ];
Report details of problems that result in erroneous nb's.
Interface raises no Errors
ImportInterface: PROC [instance: Rope.ROPE, reportProblem: ReportProblem←NIL, reportData: REFNIL] RETURNS [shhh: Thrush.SHHH];
instance should be a SunRPC address, in the form "sun#[1.2.3.4]#5", where [1.2.3.4] is the Arpa address, and 5 is the port.
UnImportInterface: PROC [shhh: Thrush.SHHH]; -- Releases all resources associated with it.
END.
Polle Zellweger (PTZ) August 9, 1990 5:10:41 pm PDT
Created.