4.1.10.5.19 ReplValInfNativeListFromReplValInfV1List

 procedure ReplValInfNativeListFromReplValInfV1List(
   replValInfV1List : REPLVALINF_V1*) : REPLVALINF_NATIVE*

Informative summary of behavior: The ReplValInfNativeListFromReplValInfV1List procedure transforms a list of REPLVALINF_V1 structures into a list of REPLVALINF_NATIVE structures.  Elements in a native structure that do not exist in a V1 structure are initialized to 0 or NULL values.

 returnList : list of REPLVALINF_NATIVE
 native : REPLVALINF_NATIVE
  
 for each v1 in replValInfV1List
   native := 0
   native := v1
   add native to returnList
 endfor
  
 return returnList