diff options
-rw-r--r-- | src/libqmi-glib/qmi-version.h.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libqmi-glib/qmi-version.h.in b/src/libqmi-glib/qmi-version.h.in index 3369d2e..3d6d872 100644 --- a/src/libqmi-glib/qmi-version.h.in +++ b/src/libqmi-glib/qmi-version.h.in @@ -33,6 +33,8 @@ * * Evaluates to the major version number of libqmi-glib which this source * is compiled against. + * + * Since: 1.6 */ #define QMI_MAJOR_VERSION (@QMI_MAJOR_VERSION@) @@ -41,6 +43,8 @@ * * Evaluates to the minor version number of libqmi-glib which this source * is compiled against. + * + * Since: 1.6 */ #define QMI_MINOR_VERSION (@QMI_MINOR_VERSION@) @@ -49,6 +53,8 @@ * * Evaluates to the micro version number of libqmi-glib which this source * compiled against. + * + * Since: 1.6 */ #define QMI_MICRO_VERSION (@QMI_MICRO_VERSION@) @@ -60,6 +66,8 @@ * * Returns: %TRUE if the version of the libqmi-glib header files * is the same as or newer than the passed-in version. + * + * Since: 1.6 */ #define QMI_CHECK_VERSION(major,minor,micro) \ (QMI_MAJOR_VERSION > (major) || \ |