Eina Log: Fixed ABI break introduce by the addition of 'color'.

ABI break was introduced here 5913ce7ec8

Always add new members at the end of public structures.
This commit is contained in:
Tom Hacohen 2014-03-10 16:50:03 +00:00
parent cb9a06f550
commit c6589ffc19
1 changed files with 3 additions and 1 deletions

View File

@ -413,13 +413,15 @@ typedef struct _Eina_Log_Domain Eina_Log_Domain;
struct _Eina_Log_Domain
{
int level; /**< Max level to log */
const char *color; /**< Color to use when printing in this domain */
const char *domain_str; /**< Formatted string with color to print */
const char *name; /**< Domain name */
size_t namelen; /**< strlen(name) */
/* Private */
Eina_Bool deleted : 1; /**< Flags deletion of domain, a free slot */
/* Add new members here. */
const char *color; /**< Color to use when printing in this domain */
};
/**