Version
The following code block shows the data structure for the version structure.
typedef union _ST_VERSION {
STF_U32 u32Version;
struct {
STF_U8 u8BuildVersion;
STF_U8 u8MinorVersion;
STF_U16 u16MajorVersion;
} field;
} ST_VERSION, *PST_VERSION;
The following table describes the fields in the above code block.
| Field | Description |
|---|---|
| u32Version | 32-bit version data |
| u8BuildVersion | Build version |
| u8MinorVersion | Minor version |
| u16MajorVersion | Major version |
