-- ColorDevice.mesa
-- Last changed by Maureen Stone, June 7, 1982 2:01 pm
-- Last changed by Doug Wyatt, September 1, 1982 3:48 pm

DIRECTORY
GraphicsBasic USING [DeviceRef];

ColorDevice: CEDAR DEFINITIONS = {

New: PROC[raster, height: CARDINAL ← 0] RETURNS[GraphicsBasic.DeviceRef];

Error: ERROR; -- usually means colordisplay has not been initialized

}.