Table of Contents

Description

This type describes the version of EFL with an optional variant.

This may be used to query the current running version of EFL. Or it can be passed by applications at startup time to inform EFL of the version a certain application was built for.

Since 1.18

Fields

Signature

struct Efl.Version {
    major: int;
    minor: int;
    micro: int;
    revision: int;
    flavor: string;
    build_id: string;
}

C signature

typedef struct _Efl_Version {
    int major;
    int minor;
    int micro;
    int revision;
    const char *flavor;
    const char *build_id;
} Efl_Version;