1 /* format: style4,delnl,insnl,indattr,ifthen,dclind10 */ 2 /* Begin include file rcp_resource_info.incl.pl1 3 * 4 * This include file gives information about the object, 5 * or resource for the RCP operation. If RM is enabled this 6 * information will provide the registry name and switch pointer 7 * for the registry so additional resource information can be 8 * determined. If RM is disabled, this information will include 9 * the resource name and/or type. 10 */ 11 12 dcl resource_info_ptr ptr; 13 14 dcl 1 resource_info based (resource_info_ptr), 15 2 registry_dir aligned char (64), /* Could be a different if it is reconstruct operation */ 16 2 registry_switch_ptr 17 ptr, /* Switch to the registry */ 18 2 registry_record_ptr 19 ptr, /* Pointer to the registry record */ 20 2 resource_type char (32), /* Resource type */ 21 2 resource_name char (32); /* Resource name */ 22 23 /* end include file .. rcp_resource_info.incl.pl1 */