RefreshGList( Gadgets, Window, Requester, NumGad )
VOID RefreshGList( struct Gadget *, struct Window *,
struct Requester *, WORD );
Refreshes (redraws) gadgets in the gadget list starting from the specified gadget. At most NumGad gadgets are redrawn. If NumGad is -1, all gadgets until a terminating NULL value in the NextGadget field is found will be refreshed, making this routine a superset of
RefreshGadgets().
The Requester parameter can point to a Requester structure. If the first gadget in the list has the GTYP_REQGADGET flag set, the gadget list refers to gadgets in a requester and the pointer must necessarily point to a window. If these are not the gadgets of a requester, the requester argument may be NULL.
Be sure to see the
RefreshGadgets() function description, as this function is simply an extension of that.