check_version
Description:
public bool check_version (
uint major,
uint minor,
uint micro)
Run-time version check, to check the version the Clutter library that an application is currently linked against
This is the run-time equivalent of the compile-time CLUTTER_CHECK_VERSION pre-processor macro
Parameters:
| major |
major version, like 1 in 1.2.3 |
| minor |
minor version, like 2 in 1.2.3 |
| micro |
micro version, like 3 in 1.2.3 |
Returns:
true if the version of the Clutter library is greater than (major, minor, micro), and
false otherwise |