diff options
author | Nicolas Aguirre <aguirre.nicolas@gmail.com> | 2014-10-10 12:21:04 +0200 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2014-10-20 18:02:18 +0200 |
commit | 1e64aed04a51b94e7f8a946a83acf85a6f1b442b (patch) | |
tree | 4f8f374dd937812cf3269ceda0b486dc378f43f6 /src/lib/emotion/Emotion.h | |
parent | 020f5012652b3df8f643a2bbe3c917c068493082 (diff) |
emotion: add documentation for Emotion_Version structure.
Diffstat (limited to '')
-rw-r--r-- | src/lib/emotion/Emotion.h | 13 |
1 files 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" { | |||
272 | 272 | ||
273 | #define EMOTION_VERSION_MAJOR EFL_VERSION_MAJOR | 273 | #define EMOTION_VERSION_MAJOR EFL_VERSION_MAJOR |
274 | #define EMOTION_VERSION_MINOR EFL_VERSION_MINOR | 274 | #define EMOTION_VERSION_MINOR EFL_VERSION_MINOR |
275 | 275 | /** | |
276 | * @typedef Emotion_Version | ||
277 | * Represents the current version of Emotion | ||
278 | */ | ||
276 | typedef struct _Emotion_Version | 279 | typedef struct _Emotion_Version |
277 | { | 280 | { |
278 | int major; | 281 | int major; /** < major (binary or source incompatible changes) */ |
279 | int minor; | 282 | int minor; /** < minor (new features, bugfixes, major improvements version) */ |
280 | int micro; | 283 | int micro; /** < micro (bugfix, internal improvements, no new features version) */ |
281 | int revision; | 284 | int revision; /** < git revision (0 if a proper release or the git revision number Emotion is built from) */ |
282 | } Emotion_Version; | 285 | } Emotion_Version; |
283 | 286 | ||
284 | EAPI extern Emotion_Version *emotion_version; | 287 | EAPI extern Emotion_Version *emotion_version; |