
  PROCEDURE [INLINE] pfp$build_log_list_locator
    (    p_log_list: {input} pft$p_log_list;
         p_catalog_file: {input^} pft$p_catalog_file;
     VAR log_list_locator: pft$log_list_locator);

?? PUSH (LISTEXT := ON) ??

    VAR
      p_cell: ^cell;

    IF (p_log_list = NIL) THEN
      log_list_locator.log_count := 0;
    ELSE
      log_list_locator.log_count := UPPERBOUND (p_log_list^);
      p_cell := #LOC (p_log_list^);
      log_list_locator.relative_cell_pointer := #REL (p_cell, p_catalog_file^);
    IFEND;

  PROCEND pfp$build_log_list_locator;

*copyc pft$log_list_locator
*copyc pft$p_catalog_file
*copyc pft$p_log_list
?? POP ??
