INPUTS

entries
- pointer to an array of pointers to be inserted. Warning: This is a pointer to a pointer. See example for details.

count
- Number of elements to be inserted. If count==-1, entries will be inserted until NULL pointer in the entries array is found.

pos
- New entries will be added in front of this entry.
MUIV_List_Insert_Top: insert as first entry.
MUIV_List_Insert_Active: insert in front of the active entry.
MUIV_List_Insert_Sorted: insert sorted.
MUIV_List_Insert_Bottom: insert as last entry.