1 /* begin include file tc_desk_info_.incl.pl1 BIM June 1981 */ 2 /* Modified 1 October 1983 by Jon A. Rochlis to add support for partial 3 screen width windows */ 4 /* Modified 28 March 1984 by JR to add window_iocb_ptr so tc_ can inform 5 window_ of events such as reconnection, by doing set_window_status control 6 orders. */ 7 8 /* internal interface */ 9 10 /* format: style2,linecom,^indnoniterdo,indcomtxt,^inditerdo,dclind5,idind25 */ 11 /* requests to desk management, first pass implementation */ 12 13 declare tc_desk_info_ptr pointer; 14 declare 1 tc_desk_window_info aligned based (tc_desk_info_ptr), 15 2 first_row fixed bin, /* top row of window */ 16 2 n_rows fixed bin, /* How many rows */ 17 2 first_column fixed bin, /* Fist column of window */ 18 2 n_columns fixed bin, /* How many columns */ 19 2 window_id bit (36) aligned, 20 2 window_iocb_ptr ptr; 21 22 /* used in calls to terminal control to establish rearrange, 23 and inquire about windows */ 24 25 /* end include file tc_desk_info_.incl.pl1 */