-- MyKluge.mesa
-- Brenda Hankins	 2-Aug-84 17:01:30	
-- this exports Event.swapping and CMFile stuff so don't have to include it all.

DIRECTORY
  CmFile USING [ErrorCode];

MyKluge: PROGRAM EXPORTS CmFile =

  BEGIN

  UserDotCmLine: PUBLIC PROC [title, name: LONG STRING] RETURNS [s: LONG STRING] =
    {Error[other]};

  Error: PUBLIC SIGNAL [code: CmFile.ErrorCode] = CODE;

  END.