1 /* BEGIN INCLUDE FILE . . . sl_list.incl.pl1 */ 2 3 declare 1 sl_list based, 4 2 version fixed binary, /* Must be 2 */ 5 2 link pointer, /* Pointer to structure for next list */ 6 2 name_count fixed binary, /* Number of synonyms of this search list */ 7 2 pad (3) bit (36), /* Must be zero */ 8 2 names (sl_list_name_count refer (sl_list.name_count)) char (32); 9 /* Synonyms of this search list */ 10 11 declare sl_list_name_count fixed binary; 12 declare sl_list_version_2 fixed binary internal static options (constant) initial (2); 13 14 /* END INCLUDE FILE . . . sl_list.incl.pl1 */