LABELED_BIT

The LABELED_BIT structure is used to handle bitfields or flags. The data type will almost always be found in conjunction with a SET data type.

typedef struct _LABELED_BIT {
    BYTE BitNumber;
    LPSTR LabelOff;
    LPSTR LabelOn;
} LABELED_BIT;

typedef LABELED_BIT *LPLABELED_BIT;
 

Members

BitNumber
Bit number (starts at 0, up to 256 bits).
LabelOff
Label for bit = 0.
LabelOn
Label for bit = 1.