update e_module struct types

SVN revision: 82797
This commit is contained in:
Mike Blumenkrantz 2013-01-15 10:22:36 +00:00
parent 505278789d
commit 34020fe5df
1 changed files with 4 additions and 4 deletions

View File

@ -28,8 +28,8 @@ struct _E_Module
E_Module_Api *api;
const char *name;
const char *dir;
Eina_Stringshare *name;
Eina_Stringshare *dir;
void *handle;
struct {
@ -38,8 +38,8 @@ struct _E_Module
int (*save) (E_Module *m);
} func;
unsigned char enabled : 1;
unsigned char error : 1;
Eina_Bool enabled : 1;
Eina_Bool error : 1;
/* the module is allowed to modify these */
void *data;