cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=251164ad72e9a0e951d06e6a262141c465ff5689
commit 251164ad72e9a0e951d06e6a262141c465ff5689 Author: Nicolas Aguirre <[email protected]> Date: Fri Oct 10 12:17:12 2014 +0200 ethumb: add documentation for Ethumb_Version structure. --- src/lib/ethumb/Ethumb.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/lib/ethumb/Ethumb.h b/src/lib/ethumb/Ethumb.h index 4f91433..6a1bd40 100644 --- a/src/lib/ethumb/Ethumb.h +++ b/src/lib/ethumb/Ethumb.h @@ -36,13 +36,16 @@ extern "C" { #define ETHUMB_VERSION_MAJOR EFL_VERSION_MAJOR #define ETHUMB_VERSION_MINOR EFL_VERSION_MINOR - + /** + * @typedef Ethumb_Version + * Represents the current version of Ethumb + */ typedef struct _Ethumb_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 Ethumb is built from) */ } Ethumb_Version; EAPI extern Ethumb_Version *ethumb_version; --
