Contents

TwEnumVal (structure)

struct TwEnumVal

Description

This structure stores an enum value and its associated label (a pointer to a zero-terminated string). It is used by TwDefineEnum to define values of variables of type enum.

Defintion

struct TwEnumVal
{
    int          Value;
    const char * Label;
};

See Also

TwDefineEnum