cl_free()

Frees the memory associated with a choice list

Call  
#include <vv_clist.h>
void cl_free(clistp)

CLISTPTR clistp

Choice list to free

Returns

None

 
Description

cl_free() frees the memory allocated for the choice list structure and the associated choice list window. If the window has scroll bars or shadows, the scroll bar and shadow structures are also freed.

For example, to free a choice list attached to a field:

cl_free(clistp);

fldp -> clistp = (CLISTPTR)NULLP;

Related Functions

cl_def()


Home Contents Previous Next