Boolean Toggle Structure

typedef struct toggle_struct /*Defined in vv_form.h   */
{        
UCHAR *st_yes; /*string to display for Boolean TRUE   */
UCHAR *st_no; /*string to display for Boolean FALSE   */
UCHAR att_yes; /*attribute for display of st_true   */
UCHAR att_no; /*attribute for display of st_false   */
} TOGGLE, *TOGGLEPTR;      


Home Contents Previous Next