cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=020f5012652b3df8f643a2bbe3c917c068493082
commit 020f5012652b3df8f643a2bbe3c917c068493082 Author: Nicolas Aguirre <[email protected]> Date: Fri Oct 10 12:20:45 2014 +0200 embryo: add documentation for Embryo_Version structure. --- src/lib/embryo/Embryo.h | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/lib/embryo/Embryo.h b/src/lib/embryo/Embryo.h index 923afe7..413c38b 100644 --- a/src/lib/embryo/Embryo.h +++ b/src/lib/embryo/Embryo.h @@ -370,13 +370,17 @@ extern "C" { #define EMBRYO_VERSION_MAJOR EFL_VERSION_MAJOR #define EMBRYO_VERSION_MINOR EFL_VERSION_MINOR - + + /** + * @typedef Embryo_Version + * Represents the current version of Embryo + */ typedef struct _Embryo_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 Embryo is built from) */ } Embryo_Version; EAPI extern Embryo_Version *embryo_version; --
