--File CIFOutputDefs.Mesa
-- June 1980 by MN
--Last changed: March 27, 1981 3:57 PM
CIFOutputDefs: DEFINITIONS =
BEGIN
SortType: TYPE = {none,incx,decx,incy,decy};
SetSorting: PUBLIC PROCEDURE [sorting: SortType];
OutputSymbolName: PUBLIC PROCEDURE [name: STRING];
OutputNamedPoint: PUBLIC PROCEDURE [name: STRING, x,y: LONG INTEGER];
-- begin a new page of output
NewPlot: PUBLIC PROCEDURE;
-- finish the current page of output
DonePlot: PUBLIC PROCEDURE;
-- specify window limits
OutWindow: PUBLIC PROCEDURE [left, right, bottom, top: LONG INTEGER];
END.