/** * HB_VERSION_MAJOR: * * The major component of the library version available at compile-time.
*/ #define HB_VERSION_MAJOR 10 /** * HB_VERSION_MINOR: * * The minor component of the library version available at compile-time.
*/ #define HB_VERSION_MINOR 2 /** * HB_VERSION_MICRO: * * The micro component of the library version available at compile-time.
*/ #define HB_VERSION_MICRO 0
/** * HB_VERSION_STRING: * * A string literal containing the library version available at compile-time.
*/ #define HB_VERSION_STRING "10.2.0"
/** * HB_VERSION_ATLEAST: * @major: the major component of the version number * @minor: the minor component of the version number * @micro: the micro component of the version number * * Tests the library version at compile-time against a minimum value, * as three integer components.
*/ #define HB_VERSION_ATLEAST(major,minor,micro) \
((major)*10000+(minor)*100+(micro) <= \
HB_VERSION_MAJOR*10000+HB_VERSION_MINOR*100+HB_VERSION_MICRO)
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.