-- WalnutVoice.Mesa

-- Last Edited by: Willie-Sue, September 26, 1983 12:40 pm


DIRECTORY

 Rope USING [ROPE],
 ViewerClasses USING [Viewer];

WalnutVoice: CEDAR DEFINITIONS =

BEGIN

-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
CheckForWalnuthatch: PROC RETURNS[ra: REF ANY];
-- checks if the Nuthatch stuff is loaded and started; if loaded but there is no nuthatchUserHandle, then the initialization proc is called
-- returns NIL if no Nuthatch or the initialization returned NIL

AddNuthatchHandleToViewer: PROC[v: ViewerClasses.Viewer];

MakeInterestEntry: PROC[voiceID, gvID: Rope.ROPE];

VoiceMoveTo: PROC[msgSetName, msgName: Rope.ROPE];

RemoveInterestEntry: PROC[voiceID, gvID: Rope.ROPE];

END.