XmListAddItems - A List function that adds items to the list
#include <Xm/List.h> void XmListAddItems (widget, items, item_count, position) Widget widget; XmString *items; int item_count; int position;
XmListAddItems adds the specified items to the list at the given position. The first item_count items of the items array are added to the list. When the items are inserted into the list, they are compared with the current XmNselectedItems list. If any of the new items matches an item on the selected list, it appears selected.
For a complete definition of List and its associated resources, see XmList(3X).