1 2 /* "ncp_data_template_dcls.incl.pl1" -- include file to declare */ 3 /* the format of some of the structures contained in the NCP hardcore */ 4 /* data base(s). */ 5 6 declare 7 1 ncp_data_header_template aligned based, /* structure at top of net_db_ to remember where */ 8 /* the various other structures are and to */ 9 /* contain some debugging data. */ 10 2 version_number fixed binary (17), 11 2 ncp_data bit (18) aligned, 12 2 meter_cells bit (18) aligned, 13 2 lock_tbl bit (18) aligned, 14 2 host_tbl bit (18) aligned, 15 2 rfc_tbl bit (18) aligned, 16 2 socket_tbl bit (18) aligned, 17 2 proc_tbl bit (18) aligned, 18 2 error_tbl bit (18) aligned, 19 2 last_label_in_net_db bit (18) aligned; 20 21 /* end of include file "ncp_data_template_dcls.incl.pl1" -- */ 22