1 /* BEGIN INCLUDE FILE ... channel_manager_dcls.incl.pl1 */
 2 
 3 /* Created 8/25/78 by J. Stern */
 4 
 5 
 6 /* call channel_manager$read (devx, chain_ptr, more_input_flag, code) */
 7 dcl channel_manager$read entry (fixed bin, ptr, bit (1) aligned, fixed bin (35));
 8 
 9 /* call channel_manager$write (devx, output_ptr, code) */
10 dcl channel_manager$write entry (fixed bin, ptr, fixed bin (35));
11 
12 /* call channel_manager$control (devx, control_type, info_ptr, code) */
13 dcl channel_manager$control entry (fixed bin, char (*), ptr, fixed bin (35));
14 
15 /* call channel_manager$set_modes (devx, mode_change_list_ptr, code) */
16 dcl channel_manager$set_modes entry (fixed bin, ptr, fixed bin (35));
17 
18 /* call channel_manager$check_modes (devx, mode_change_list_ptr, code) */
19 dcl channel_manager$check_modes entry (fixed bin, ptr, fixed bin (35));
20 
21 /* call channel_manager$get_modes (devx, modes, code) */
22 dcl channel_manager$get_modes entry (fixed bin, char (*), fixed bin (35));
23 
24 /* call channel_manager$interrupt (devx, int_type, int_data) */
25 dcl channel_manager$interrupt entry (fixed bin, fixed bin, bit (72) aligned);
26 
27 /* call channel_manager$interrupt_later (devx, int_type, int_data) */
28 dcl channel_manager$interrupt_later entry (fixed bin, fixed bin, bit (72) aligned);
29 
30 /* call channel_manager$queued_interrupt (devx, int_type, int_data) */
31 dcl channel_manager$queued_interrupt entry (fixed bin, fixed bin, bit (72) aligned);
32 
33 
34 /* END INCLUDE FILE ... channel_manager_dcls.incl.pl1 */