-- file DisplayCommon
-- last edited by Brotz, November 12, 1981 2:19 PM

DIRECTORY
dsD: FROM "DisplayDefs" USING [CharPropertyTable, DCBptr, Font];

displayCommon: PROGRAM = PUBLIC

BEGIN

-- Purpose: named common block for variables shared by Display, initialization, and
-- EditSmartDisplay


bitMapPtr: LONG POINTER;
bitmapInMDS: BOOLEAN;

mcFont: dsD.Font;

charPropertyTable: dsD.CharPropertyTable;

firstDCB: dsD.DCBptr;
patchDCBPtr: dsD.DCBptr;

bitMapReady: BOOLEAN;

END. -- of DisplayCommon --