Information about available soudn decoders. More...
#include <SDL_sound.h>
Public Attributes | |
const char ** | extensions |
const char * | description |
const char * | author |
const char * | url |
Information about available soudn decoders.
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); }
Definition at line 140 of file SDL_sound.h.
const char* Sound_DecoderInfo::author |
"Name Of Author \<email@emailhost.dom\>"
Definition at line 144 of file SDL_sound.h.
const char* Sound_DecoderInfo::description |
Human readable description of decoder.
Definition at line 143 of file SDL_sound.h.
const char** Sound_DecoderInfo::extensions |
File extensions, list ends with NULL.
Definition at line 142 of file SDL_sound.h.
const char* Sound_DecoderInfo::url |
URL specific to this decoder.
Definition at line 145 of file SDL_sound.h.