-- definitions module for ppprocs5 for silicon (pretty picture) program
-- last modified by McCreight, September 27, 1982  6:13 PM
--   drArb added

DIRECTORY
  SegmentDefs,
  multiGraphicsDefs,
  ppdefs,
  StreamDefs;
pppdefs: DEFINITIONS IMPORTS ppdefs, SegmentDefs, multiGraphicsDefs, StreamDefs =
  BEGIN OPEN ppdefs, multiGraphicsDefs, StreamDefs;

  drArb: PROCEDURE[dr0: drProc, orient: orientationIndex,
    ob: obPtr, x, y: locNum, pr: POINTER TO drRecord];

  drText: drProc;
  drCnText: drProc;
  drRect0: drProc;
  drRect2: drProc;
  drCell0: drProc;
  drCell2: drProc;
  drCell4: drProc;
  drCell6: drProc;
  drCell0R: drProc;
  drCell2R: drProc;
  drCell4R: drProc;
  drCell6R: drProc;
  drXstr0: drProc;
  drXstr2: drProc;
  drPXstr0: drProc;
  drPXstr2: drProc;
  drAXstr0: drProc;
  drAXstrR0: drProc;
  drAXstr2: drProc;
  drAXstrR2: drProc;
  drAXstr4: drProc;
  drAXstrR4: drProc;
  drAXstr6: drProc;
  drAXstrR6: drProc;
  drPu0: drProc;
  drPu2: drProc;
  drPu4: drProc;
  drPu6: drProc;
  drWire0: drProc;
  drWire2: drProc;
  drPWire0: drProc;
  drPWire2: drProc;
  drBC0: drProc;
  drBC2: drProc;
  drBC4: drProc;
  drBC6: drProc;
  drMDC0: drProc;
  drMDC2: drProc;
  drDC0: drProc;
  drDC2: drProc;
  drPDC0: drProc;
  drPDC2: drProc;
  drMPDC0: drProc;
  drMPDC2: drProc;
  drMM0: drProc;
  drMM2: drProc;

  drBuC0: drProc;
  drBuC2: drProc;
  drBuC4: drProc;
  drBuC6: drProc;

  drBus0: drProc;
  drBus2: drProc;
  drBus4: drProc;
  drBus6: drProc;
  drBusR0: drProc;
  drBusR2: drProc;
  drBusR4: drProc;
  drBusR6: drProc;

  drRep0: drProc;
  drRep2: drProc;
  drRep4: drProc;
  drRep6: drProc;
  drRepR0: drProc;
  drRepR2: drProc;
  drRepR4: drProc;
  drRepR6: drProc;


  END.