Seit BASS 2.3 gibt es jetzt
BASS_PluginGetInfo.
Beispiel aus der Hilfe-Datei:
Code:
BASS_PLUGININFO *info=BASS_PluginGetInfo(plugin); // get the plugin info
int a;
for (a=0; a<info->formatc; a++) { // display the array of formats...
printf("ctype=%x name=%s exts=%s\n",
info->formats[a].ctype, info->formats[a].name, info->formats[a].exts);
}
formats[a].exts suchst du glaube ich; alles weitere in der Hilfe.