mood.c
changeset 35 a77a8e7ab8ae
parent 31 e404cd1c7077
child 41 cfb02882828d
equal deleted inserted replaced
34:eea355fa94cf 35:a77a8e7ab8ae
    45 
    45 
    46 #define DESCRIPTION ( MOOD_DESCRIPTION )
    46 #define DESCRIPTION ( MOOD_DESCRIPTION )
    47 
    47 
    48 static const gchar *deps[] = { "pep_mood", NULL };
    48 static const gchar *deps[] = { "pep_mood", NULL };
    49 
    49 
    50 static module_info_t info_mood_dev = {
    50 module_info_t info_mood = {
    51 	.branch      = "dev",
    51 	.branch      = MCABBER_BRANCH,
    52 	.api         = 20,
    52 	.api         = MCABBER_API_VERSION,
    53 	.version     = PROJECT_VERSION,
    53 	.version     = PROJECT_VERSION,
    54 	.description = DESCRIPTION,
    54 	.description = DESCRIPTION,
    55 	.requires    = deps,
    55 	.requires    = deps,
    56 	.init        = mood_init,
    56 	.init        = mood_init,
    57 	.uninit      = mood_uninit,
    57 	.uninit      = mood_uninit,
    58 	.next        = NULL,
    58 	.next        = NULL,
    59 };
       
    60 
       
    61 module_info_t info_mood = {
       
    62 	.branch      = "0.10.1",
       
    63 	.api         = 1,
       
    64 	.version     = PROJECT_VERSION,
       
    65 	.description = DESCRIPTION,
       
    66 	.requires    = deps,
       
    67 	.init        = mood_init,
       
    68 	.uninit      = mood_uninit,
       
    69 	.next        = &info_mood_dev,
       
    70 };
    59 };
    71 
    60 
    72 //
    61 //
    73 //  globals
    62 //  globals
    74 //
    63 //