well, one question:
is it possible to retrieve configuration-data from other (core-) plugins to use it in yours ? currently i'm interested in the default playlist font/color and i don't know, hot to get them ..
i tried something like that to get some "config_vars" (whatever they are
CODE
int count = service_enum_get_count_t( config_var );
config_var **p = new config_var*[count];
for (int a = 0; a < count; a++)
{
p[a] = service_enum_create_t( config_var, a );
_RPT1( 0, "%s\r\n", p[a]->get_name() );
}
but apparently the ones i need are not among them ..
thanks in advance for any info about this ;D