I use
list_begin(), list_next(), list_end()
functions, and I'd like to use some specific strings from that list to be displayed later.
For example:
items_list:=list_begin(LIST_GROUNDITEMS);
while(items_list != 0) do
begin
item:=list_next(items_list);
if (item) then...