cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1e64aed04a51b94e7f8a946a83acf85a6f1b442b

commit 1e64aed04a51b94e7f8a946a83acf85a6f1b442b
Author: Nicolas Aguirre <[email protected]>
Date:   Fri Oct 10 12:21:04 2014 +0200

    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 b07cbd3..bb41cbe 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;

-- 


Reply via email to