PDInterpOutput.mesa
Michael Plass, November 10, 1983 2:59 pm
DIRECTORY PDFileFormat, PDInterpBitmap;
PDInterpOutput: DEFINITIONS = BEGIN
StartImage: PROC [herald: PDFileFormat.Herald, startImage: PDFileFormat.StartImage]
RETURNS [PDInterpBitmap.BitmapDesc];
Called at the start of each pass.
Returns a cleared buffer for the first band on the page.
EndBand: PROC RETURNS [PDInterpBitmap.BitmapDesc];
Called at the end of each band.
Returns a cleared buffer for the next band.
The buffer returned by the call for the last band should not be used.
EndImage: PROC;
Actually starts the printing.
There needs to be some stuff here for error messages and recovery.
END.