diff options
author | Nicolas Aguirre <aguirre.nicolas@gmail.com> | 2014-10-10 12:20:45 +0200 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2014-10-20 18:02:14 +0200 |
commit | 020f5012652b3df8f643a2bbe3c917c068493082 (patch) | |
tree | 08361e3f0599a18afaccff2be01d29a16fc29cf2 /src/lib/embryo/Embryo.h | |
parent | f15d4627377fe5288baf864ba6df1f3c6ce26f98 (diff) |
embryo: add documentation for Embryo_Version structure.
Diffstat (limited to '')
-rw-r--r-- | src/lib/embryo/Embryo.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/lib/embryo/Embryo.h b/src/lib/embryo/Embryo.h index 923afe73aa..413c38bf1a 100644 --- a/src/lib/embryo/Embryo.h +++ b/src/lib/embryo/Embryo.h | |||
@@ -370,13 +370,17 @@ extern "C" { | |||
370 | 370 | ||
371 | #define EMBRYO_VERSION_MAJOR EFL_VERSION_MAJOR | 371 | #define EMBRYO_VERSION_MAJOR EFL_VERSION_MAJOR |
372 | #define EMBRYO_VERSION_MINOR EFL_VERSION_MINOR | 372 | #define EMBRYO_VERSION_MINOR EFL_VERSION_MINOR |
373 | 373 | ||
374 | /** | ||
375 | * @typedef Embryo_Version | ||
376 | * Represents the current version of Embryo | ||
377 | */ | ||
374 | typedef struct _Embryo_Version | 378 | typedef struct _Embryo_Version |
375 | { | 379 | { |
376 | int major; | 380 | int major; /** < major (binary or source incompatible changes) */ |
377 | int minor; | 381 | int minor; /** < minor (new features, bugfixes, major improvements version) */ |
378 | int micro; | 382 | int micro; /** < micro (bugfix, internal improvements, no new features version) */ |
379 | int revision; | 383 | int revision; /** < git revision (0 if a proper release or the git revision number Embryo is built from) */ |
380 | } Embryo_Version; | 384 | } Embryo_Version; |
381 | 385 | ||
382 | EAPI extern Embryo_Version *embryo_version; | 386 | EAPI extern Embryo_Version *embryo_version; |