PDInterpControl.mesa
Michael Plass, November 16, 1983 2:49 pm
PDInterpControl: DEFINITIONS = BEGIN
Implemented in the print server, called by the requestor.
maxRanges: NAT = 30;
PageSpec: TYPE = ARRAY [0..maxRanges) OF PageRange;
PageRange: TYPE = RECORD [skipCount: CARDINAL ← 0, printCount: CARDINAL ← 0];
nullPageRange: PageRange = [0, 0];
RequestService: PROC [requestorName: LONG STRING, pageSpec: PageSpec];
The requestor should RPC export the PDTransfer interface with the requestorName specified here before requesting service.
END.