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;