--CreateLookupDictDefs:  Create Lookup Dictionary Defs
-- last edit by: S.Umehara, for: CES conversion, 11-Jun-84  4:06:27 PDT

DIRECTORY
  Stream USING [Handle],
  Window USING [Handle];

CreateLookupDictDefs: DEFINITIONS =
  BEGIN

  CreateLookupDict: PROCEDURE [masterStrH: Stream.Handle,
                               lookupStrH: Stream.Handle,
			       indexStrH: Stream.Handle,
			       msgSW, logSW: Window.Handle]
		    RETURNS [nEntry, ctSkipped: LONG CARDINAL];

  --Takes the main dictionary and the lookup dictionary handle.

  END.