GraphicsToPressPrivate.mesa
Michael Plass, April 11, 1983 11:41 am
DIRECTORY
Graphics,
SirPress;
GraphicsToPressPrivate: CEDAR DEFINITIONS = {
NewContextFromSirPressHandle: PUBLIC PROC [
pressHandle: SirPress.PressHandle,
resolution: REAL ← 384 -- in bits per inch
] RETURNS [Graphics.Context];
SirPressHandle: PUBLIC PROC [context: Graphics.Context] RETURNS [SirPress.PressHandle];
}.