cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f15d4627377fe5288baf864ba6df1f3c6ce26f98

commit f15d4627377fe5288baf864ba6df1f3c6ce26f98
Author: Nicolas Aguirre <[email protected]>
Date:   Fri Oct 10 12:20:24 2014 +0200

    eldbus: add documentation for Eldbus_Version structure.
---
 src/lib/eldbus/Eldbus.h | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/lib/eldbus/Eldbus.h b/src/lib/eldbus/Eldbus.h
index 478fcea..220d4ec 100644
--- a/src/lib/eldbus/Eldbus.h
+++ b/src/lib/eldbus/Eldbus.h
@@ -129,12 +129,16 @@ extern "C" {
 #define ELDBUS_ERROR_PENDING_CANCELED "org.enlightenment.DBus.Canceled"
 #define ELDBUS_ERROR_PENDING_TIMEOUT "org.freedesktop.DBus.Error.NoReply"
 
+/**
+ * @typedef Eldbus_Version
+ * Represents the current version of Eldbus
+ */
 typedef struct _Eldbus_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 Eldbus is built from) */
 } Eldbus_Version;
 
 EAPI extern const Eldbus_Version * eldbus_version;

-- 


Reply via email to