* OSTREE_YEAR_VERSION:
*
* ostree year version component (e.g. 2017 if %OSTREE_VERSION is 2017.2)
+ *
+ * Since: 2017.4
*/
#define OSTREE_YEAR_VERSION (@YEAR_VERSION@)
* OSTREE_RELEASE_VERSION:
*
* ostree release version component (e.g. 2 if %OSTREE_VERSION is 2017.2)
+ *
+ * Since: 2017.4
*/
#define OSTREE_RELEASE_VERSION (@RELEASE_VERSION@)
* OSTREE_VERSION
*
* ostree version.
+ *
+ * Since: 2017.4
*/
#define OSTREE_VERSION (@VERSION@)
*
* ostree version, encoded as a string, useful for printing and
* concatenation.
+ *
+ * Since: 2017.4
*/
#define OSTREE_VERSION_S "@VERSION@"
*
* ostree version, encoded as an hexadecimal number, useful for
* integer comparisons.
+ *
+ * Since: 2017.4
*/
#define OSTREE_VERSION_HEX \
(OSTREE_ENCODE_VERSION (OSTREE_YEAR_VERSION, OSTREE_RELEASE_VERSION))
*
* Compile-time version checking. Evaluates to %TRUE if the version
* of ostree is equal or greater than the required one.
+ *
+ * Since: 2017.4
*/
#define OSTREE_CHECK_VERSION(year,release) \
(OSTREE_YEAR_VERSION > (year) || \