diff options
-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; |