1 /* --------------- BEGIN include file resource_list.incl.pl1 --------------- */ 2 3 dcl 1 resource_list aligned based (resource_list_ptr), 4 2 forward_ptr pointer initial (null), /* points to next block, null if no next block */ 5 2 max_entries fixed bin, /* number of elements in resource name array */ 6 2 n_resources fixed bin initial (0), /* number of valid resource names in this block */ 7 2 resource_name (Max_entries refer (resource_list.max_entries)) char (32); 8 /* resource names */ 9 dcl Max_entries fixed bin, 10 resource_list_ptr pointer; 11 12 /* ---------------- END include file resource_list.incl.pl1 ---------------- */