tune.c
changeset 35 a77a8e7ab8ae
parent 31 e404cd1c7077
child 41 cfb02882828d
equal deleted inserted replaced
34:eea355fa94cf 35:a77a8e7ab8ae
    42 
    42 
    43 #define DESCRIPTION ( TUNE_DESCRIPTION )
    43 #define DESCRIPTION ( TUNE_DESCRIPTION )
    44 
    44 
    45 static const gchar *deps[] = { "pep_tune", NULL };
    45 static const gchar *deps[] = { "pep_tune", NULL };
    46 
    46 
    47 static module_info_t info_tune_dev = {
    47 module_info_t info_tune = {
    48 	.branch      = "dev",
    48 	.branch      = MCABBER_BRANCH,
    49 	.api         = 20,
    49 	.api         = MCABBER_API_VERSION,
    50 	.version     = PROJECT_VERSION,
    50 	.version     = PROJECT_VERSION,
    51 	.description = DESCRIPTION,
    51 	.description = DESCRIPTION,
    52 	.requires    = deps,
    52 	.requires    = deps,
    53 	.init        = tune_init,
    53 	.init        = tune_init,
    54 	.uninit      = tune_uninit,
    54 	.uninit      = tune_uninit,
    55 	.next        = NULL,
    55 	.next        = NULL,
    56 };
       
    57 
       
    58 static module_info_t info_tune_0_10_0 = {
       
    59 	.branch      = "0.10.0",
       
    60 	.api         = 1,
       
    61 	.version     = PROJECT_VERSION,
       
    62 	.description = DESCRIPTION,
       
    63 	.requires    = deps,
       
    64 	.init        = tune_init,
       
    65 	.uninit      = tune_uninit,
       
    66 	.next        = &info_tune_dev,
       
    67 };
       
    68 
       
    69 module_info_t info_tune = {
       
    70 	.branch      = "0.10.1",
       
    71 	.api         = 1,
       
    72 	.version     = PROJECT_VERSION,
       
    73 	.description = DESCRIPTION,
       
    74 	.requires    = deps,
       
    75 	.init        = tune_init,
       
    76 	.uninit      = tune_uninit,
       
    77 	.next        = &info_tune_0_10_0,
       
    78 };
    56 };
    79 
    57 
    80 //
    58 //
    81 //  globals
    59 //  globals
    82 //
    60 //