diff options
author | Nicolas Aguirre <aguirre.nicolas@gmail.com> | 2014-10-10 12:17:12 +0200 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2014-10-20 18:02:07 +0200 |
commit | 251164ad72e9a0e951d06e6a262141c465ff5689 (patch) | |
tree | dd09976c59922fec6b6db469d49b732f13b2f447 /src/lib/ethumb/Ethumb.h | |
parent | f078d163916cf655c624eca2f852a09749040382 (diff) |
ethumb: add documentation for Ethumb_Version structure.
Diffstat (limited to 'src/lib/ethumb/Ethumb.h')
-rw-r--r-- | src/lib/ethumb/Ethumb.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/lib/ethumb/Ethumb.h b/src/lib/ethumb/Ethumb.h index 4f91433588..6a1bd4087f 100644 --- a/src/lib/ethumb/Ethumb.h +++ b/src/lib/ethumb/Ethumb.h | |||
@@ -36,13 +36,16 @@ extern "C" { | |||
36 | 36 | ||
37 | #define ETHUMB_VERSION_MAJOR EFL_VERSION_MAJOR | 37 | #define ETHUMB_VERSION_MAJOR EFL_VERSION_MAJOR |
38 | #define ETHUMB_VERSION_MINOR EFL_VERSION_MINOR | 38 | #define ETHUMB_VERSION_MINOR EFL_VERSION_MINOR |
39 | 39 | /** | |
40 | * @typedef Ethumb_Version | ||
41 | * Represents the current version of Ethumb | ||
42 | */ | ||
40 | typedef struct _Ethumb_Version | 43 | typedef struct _Ethumb_Version |
41 | { | 44 | { |
42 | int major; | 45 | int major; /** < major (binary or source incompatible changes) */ |
43 | int minor; | 46 | int minor; /** < minor (new features, bugfixes, major improvements version) */ |
44 | int micro; | 47 | int micro; /** < micro (bugfix, internal improvements, no new features version) */ |
45 | int revision; | 48 | int revision; /** < git revision (0 if a proper release or the git revision number Ethumb is built from) */ |
46 | } Ethumb_Version; | 49 | } Ethumb_Version; |
47 | 50 | ||
48 | EAPI extern Ethumb_Version *ethumb_version; | 51 | EAPI extern Ethumb_Version *ethumb_version; |