env.c
changeset 15 fbcad36ca352
parent 14 61d94594e8fb
child 16 543bd8927354
equal deleted inserted replaced
14:61d94594e8fb 15:fbcad36ca352
    38 
    38 
    39 #define DESCRIPTION ( "Some debugging routines\nProvides commands /env and /cd" )
    39 #define DESCRIPTION ( "Some debugging routines\nProvides commands /env and /cd" )
    40 
    40 
    41 static module_info_t info_env_experimental = {
    41 static module_info_t info_env_experimental = {
    42 	.branch      = "experimental",
    42 	.branch      = "experimental",
    43 	.api         = 10,
    43 	.api         = 15,
    44 	.version     = PROJECT_VERSION,
    44 	.version     = PROJECT_VERSION,
    45 	.description = DESCRIPTION,
    45 	.description = DESCRIPTION,
    46 	.requires    = NULL,
    46 	.requires    = NULL,
    47 	.init        = env_load,
    47 	.init        = env_load,
    48 	.uninit      = env_unload,
    48 	.uninit      = env_unload,
    49 	.next        = &info_env_experimental,
    49 	.next        = &info_env_experimental,
    50 };
    50 };
    51 
    51 
    52 module_info_t info_env = {
    52 module_info_t info_env = {
    53 	.branch      = "dev",
    53 	.branch      = "dev",
    54 	.api         = 11,
    54 	.api         = 13,
    55 	.version     = PROJECT_VERSION,
    55 	.version     = PROJECT_VERSION,
    56 	.description = DESCRIPTION,
    56 	.description = DESCRIPTION,
    57 	.requires    = NULL,
    57 	.requires    = NULL,
    58 	.init        = env_load,
    58 	.init        = env_load,
    59 	.uninit      = env_unload,
    59 	.uninit      = env_unload,