Einzelnen Beitrag anzeigen

Benutzerbild von KingIR
KingIR

Registriert seit: 19. Feb 2006
81 Beiträge
 
Delphi 2006 Professional
 
#21

Re: Simply Player - Media Player

  Alt 28. Mai 2006, 17:15
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.
  Mit Zitat antworten Zitat