From 1e64aed04a51b94e7f8a946a83acf85a6f1b442b Mon Sep 17 00:00:00 2001 From: Nicolas Aguirre Date: Fri, 10 Oct 2014 12:21:04 +0200 Subject: [PATCH] emotion: add documentation for Emotion_Version structure. --- src/lib/emotion/Emotion.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/lib/emotion/Emotion.h b/src/lib/emotion/Emotion.h index b07cbd3062..bb41cbeaf9 100644 --- a/src/lib/emotion/Emotion.h +++ b/src/lib/emotion/Emotion.h @@ -272,13 +272,16 @@ extern "C" { #define EMOTION_VERSION_MAJOR EFL_VERSION_MAJOR #define EMOTION_VERSION_MINOR EFL_VERSION_MINOR - + /** + * @typedef Emotion_Version + * Represents the current version of Emotion + */ typedef struct _Emotion_Version { - int major; - int minor; - int micro; - int revision; + int major; /** < major (binary or source incompatible changes) */ + int minor; /** < minor (new features, bugfixes, major improvements version) */ + int micro; /** < micro (bugfix, internal improvements, no new features version) */ + int revision; /** < git revision (0 if a proper release or the git revision number Emotion is built from) */ } Emotion_Version; EAPI extern Emotion_Version *emotion_version;