Version Information

char const *fluxEngine_C_v1_version_string(void)

Get the version string for the currently loaded fluxEngine.

The string returned should not be parsed by the user, and the user should not make any assumptions based on the format of the string. It is purely for informational purposes, if the user of fluxEngine wants to show that string to the end-user, for example. If version-based checks are to be done, please use fluxEngine_C_v1_version_major() and fluxEngine_C_v1_version_minor() instead.

This function will never fail.

Returns

A NUL-terminated string that contains the version of fluxEngine. The user should not free that string themselves, as it is statically allocated.

int fluxEngine_C_v1_version_major(void)

Get the major version of the currently loaded fluxEngine.

This function will never fail.

Returns

The major version of fluxEngine

int fluxEngine_C_v1_version_minor(void)

Get the minor version of the currently loaded fluxEngine.

This function will never fail.

Returns

The minor version of fluxEngine