summaryrefslogtreecommitdiff
path: root/libnotify/notify-features.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'libnotify/notify-features.h.in')
-rw-r--r--libnotify/notify-features.h.in26
1 files changed, 24 insertions, 2 deletions
diff --git a/libnotify/notify-features.h.in b/libnotify/notify-features.h.in
index 265bdcc..b03f4c6 100644
--- a/libnotify/notify-features.h.in
+++ b/libnotify/notify-features.h.in
@@ -23,12 +23,34 @@
/* compile time version
*/
+
+/**
+ * NOTIFY_VERSION_MAJOR:
+ *
+ * Adwaita major version component (e.g. 1 if the version is 1.2.3).
+ */
#define NOTIFY_VERSION_MAJOR (@LIBNOTIFY_MAJOR_VERSION@)
+/**
+ * NOTIFY_VERSION_MINOR:
+ *
+ * Adwaita minor version component (e.g. 2 if the version is 1.2.3).
+ */
#define NOTIFY_VERSION_MINOR (@LIBNOTIFY_MINOR_VERSION@)
+/**
+ * NOTIFY_VERSION_MICRO:
+ *
+ * Adwaita micro version component (e.g. 3 if the version is 1.2.3).
+ */
#define NOTIFY_VERSION_MICRO (@LIBNOTIFY_MICRO_VERSION@)
-/* check whether a version equal to or greater than
- * major.minor.micro is present.
+/**
+ * NOTIFY_CHECK_VERSION:
+ * @major: required major version
+ * @minor: required minor version
+ * @micro: required micro version
+ *
+ * check whether a version equal to or greater than
+ * `major.minor.micro` is present.
*/
#define NOTIFY_CHECK_VERSION(major,minor,micro) \
(NOTIFY_VERSION_MAJOR > (major) || \