RT_COMPONENT_INFO

RT_COMPONENT_INFO is a structure that holds the version and readability information of installable components used for the functions RtIsComponentInstalled and RtfwIsComponentInstalled.

Syntax

Copy
typedef struct RT_COMPONENT_INFO {
    int MajorVersion;
    int MinorVersion;
    int PatchVersion;
    int BuildNumber;
    TCHAR FriendlyName[RT_MAX_COMPONENT_NAME_LENGTH]
} RT_ COMPONENT _INFO;

Fields

MajorVersion

The major version of the component. For example, 1.0.0.1234

MinorVersion

The minor version of the component. For example, 1.0.0.1234

PatchVersion

The update version of the component. For example, 1.0.0.1234

BuildNumber

The build number of the component. For example 1.0.0.1234.

FriendlyName

The friendly name of the component.

Requirements

Minimum supported version Header

wRTOS 1.0 SDK

RtLicensing.h

See Also: