LABELED_BYTE

The LABELED_BYTE structure is used to represent a value/label pair. You can create a table of these value/label pairs and point a SET to it to make a set of LABELED_BYTEs.

typedef struct labeled_byte {
    BYTE Value;
    LPSTR Label;
} LABELED_BYTE[];

typedef LABELED_BYTE  *LPLABELED_BYTE;
 

Members

Value
The actual field value, found in the raw data.
Label
The textual description of the field.