1.1.3.6.10 DRV_GENERICCODEC_VersionStrGet Function

int8_t* DRV_GENERICCODEC_VersionStrGet(void)

Summary

This function returns the version of Generic Codec driver in string format.

Description

The DRV_GENERICCODEC_VersionStrGet function returns a string in the format: "." Where: is the Generic Codec driver's version number. is the Generic Codec driver's version number. is an optional "patch" or "dot" release number (which is not included in the string if it equals "00"). is an optional release type ("a" for alpha, "b" for beta ? not the entire word spelled out) that is not included if the release is a production version (I.e. Not an alpha or beta).

The String does not contain any spaces. For example, "0.03a" "1.00"

Preconditions

None.

Returns

returns a string containing the version of Generic Codec driver.

Remarks

None

Example

int8_t *GENERICCODECstring; GENERICCODECstring = DRV_GENERICCODEC_VersionStrGet();

C

int8_t* DRV_GENERICCODEC_VersionStrGet();