
{    DECK: RFT$CONFIG_UTL_POINTERS



  TYPE

      rft$cu_local_host_entry = RECORD
        number_of_paths : rft$paths_per_host,
        paths : ^rft$cu_lcn_path_entry,
        entry : rft$local_host_definition,
      RECEND,

      rft$cu_remote_host_entry = RECORD
        next_entry : ^rft$cu_remote_host_entry,
        index : rft$number_of_hosts,
        number_of_paths : rft$paths_per_host,
        paths : ^rft$cu_lcn_path_entry,
        entry : rft$remote_host_definition,
      RECEND,

      rft$cu_local_nad_entry = RECORD
        next_entry : ^rft$cu_local_nad_entry,
        index : rft$local_nads,
        entry : rft$local_nad_entry,
      RECEND,

      rft$cu_remote_nad_entry = RECORD
        next_entry : ^rft$cu_remote_nad_entry,
        index : rft$remote_nads,
        entry : rft$remote_nad_entry,
      RECEND,

      rft$cu_lcn_path_entry = RECORD
        next_entry : ^rft$cu_lcn_path_entry,
        entry : rft$lcn_path_definition,
      RECEND;

  TYPE
      rft$config_utl_pointers = RECORD
        install_request: BOOLEAN,
        error_encountered: BOOLEAN,
        autpg_encountered: BOOLEAN,
        deflp_encountered: BOOLEAN,
        output_fid: amt$file_identifier,
        temporary_fid: amt$file_identifier,
        temporary_command_file_fid: amt$file_identifier,
        temporary_seq: ^SEQ(*),
        local_host_defined: BOOLEAN,
        remote_host_count: INTEGER,
        local_nad_count: INTEGER,
        remote_nad_count: INTEGER,
        remote_hosts : ^rft$cu_remote_host_entry,
        local_nads : ^rft$cu_local_nad_entry,
        remote_nads : ^rft$cu_remote_nad_entry,
        local_host : ^rft$cu_local_host_entry,
      RECEND;

?? PUSH (LISTEXT := ON) ??
*copyc amt$file_identifier
*copyc rft$configuration_defs
?? POP ??
