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