1 /* BEGIN mdbm_ind_sel_info.incl.pl1 -- jaw, 2/23/79 */ 2 3 /* 6-sep-79 Davids: key_bit_len added */ 4 5 dcl 1 ind_sel_info aligned based (isi_ptr), /* info reqired for initind index range */ 6 2 op_code fixed bin, /* comparison operator, 7 1 => = 8 2 => ^= 9 3 => < 10 4 => <= 11 5 => > 12 6 => >= */ 13 2 key char (256) var, 14 2 key_bit_len fixed bin (35); /* actual number of bits used in key */ 15 16 dcl isi_ptr ptr; 17 18 /* END mdbm_ind_sel_info.incl.pl1 */ 19 20