1 /* BEGIN INCLUDE FILE ... tty_space_man_dcls.incl.pl1 */
 2 
 3 /* This include file declares all the entries in tty_space_man and defines the constants
 4 *  to be used for the flags argument
 5 *   Modified 08/21/78 by Robert Coren to eliminate "masked" flag
 6 *   Modified March 1981 by Robert Coren to add get_perm_space entry
 7 *   Modified April 1981 by Robert Coren to add switch_chain entry
 8 */
 9 
10 dcl  tty_space_man$get_space entry (fixed bin, ptr);
11 dcl  tty_space_man$get_perm_space entry (fixed bin, ptr);
12 dcl  tty_space_man$free_space entry (fixed bin, ptr);
13 dcl  tty_space_man$get_buffer entry (fixed bin, fixed bin, bit (1), ptr);
14 dcl  tty_space_man$free_buffer entry (fixed bin, bit (1), ptr);
15 dcl  tty_space_man$get_chain entry (fixed bin, fixed bin, fixed bin, bit (1), ptr);
16 dcl  tty_space_man$free_chain entry (fixed bin, bit (1), ptr);
17 dcl  tty_space_man$switch_chain entry (fixed bin, fixed bin, bit (1), bit (1), ptr);
18 dcl  tty_space_man$needs_space entry (fixed bin);
19 
20 dcl  INPUT bit (1) int static options (constant) init ("0"b);
21 dcl  OUTPUT bit (1) int static options (constant) init ("1"b);
22 
23 /* END INCLUDE FILE ... tty_space_man_dcls.incl.pl1 */