| typedef struct clist_struct | /*Defined in vv_struc.h | */ | ||
| { | ||||
| UINT | tag; | /*structure tag | */ | |
| WINDOWPTR | wnp; | /*choice list window pointer | */ | |
| int | nextact; | /*next action code | */ | |
| UCHAR | *kwdp; | /*keyword associated with field | */ | |
| int | flags; | /*choice list flags | */ | |
| UCHAR | *help; | /*choice list help keyword or message | */ | |
| UCHAR | *fm_help; | /*form help keyword or message | */ | |
| int | itemnum; | /*starting line in the list file | */ | |
| int | len; | /*length of highlight bar | */ | |
| UCHAR | act_att; | /*attribute of highlight bar | */ | |
| UCHAR | dummy; | /*word alignment dummy variable | */ | |
| PTR | parentp; | /*parent form of choice list | */ | |
| HWND | LBhwnd; | /* | (Windows only) | */ |
| int | sa; | /*Is this stand alone or part of a form | (Windows/Web only) | */ |
| } CLIST, *CLISTPTR; | ||||