#include <SDL_sound.h>
Data Fields | |
const char ** | extensions |
const char * | description |
const char * | author |
const char * | url |
Each decoder sets up one of these structs, which can be retrieved via the Sound_AvailableDecoders() function. EVERY FIELD IN THIS IS READ-ONLY.
The extensions field is a NULL-terminated list of ASCIZ strings. You should read it like this:
const char **ext; for (ext = info->extensions; *ext != NULL; ext++) { printf(" File extension \"%s\"\n", *ext); }
|
"Name Of Author <email@emailhost.dom>" |
|
Human readable description of decoder. |
|
File extensions, list ends with NULL. |
|
URL specific to this decoder. |