cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=3032ebc3e2ae8d85c01adad7fc8815259b843706
commit 3032ebc3e2ae8d85c01adad7fc8815259b843706 Author: Nicolas Aguirre <[email protected]> Date: Fri Oct 10 12:14:46 2014 +0200 ecore_x: add documentation for Ecore_X_Version structure. --- src/lib/ecore_x/Ecore_X.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/lib/ecore_x/Ecore_X.h b/src/lib/ecore_x/Ecore_X.h index 2db94da..c3f0726 100644 --- a/src/lib/ecore_x/Ecore_X.h +++ b/src/lib/ecore_x/Ecore_X.h @@ -28,13 +28,16 @@ #define ECORE_X_VERSION_MAJOR EFL_VERSION_MAJOR #define ECORE_X_VERSION_MINOR EFL_VERSION_MINOR - +/** + * @typedef Ecore_X_Version + * Represents the current version of Ecore_X + */ typedef struct _Ecore_X_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 Ecore_X is built from) */ } Ecore_X_Version; EAPI extern Ecore_X_Version *ecore_x_version; --
