Wiki Page Content

Differences between revisions 5 and 6
Revision 5 as of 2009-11-24 21:24:28
Size: 638
Editor: SheenaSmith
Comment: add categories
Revision 6 as of 2009-12-12 07:15:27
Size: 642
Editor: SheenaSmith
Comment: format update
Deletions are marked like this. Additions are marked like this.
Line 27: Line 27:
You can add useful comments here ''You can add useful comments here''

SDL_GetNumAudioDrivers

Use this function to return the number of built in audio drivers.

Syntax

int SDL_GetNumAudioDrivers(void)

Return Value

The number of built in audio drivers.

Code Examples

int i;

for ( i = 0; i < SDL_GetNumAudioDrivers(); ++i ) {
    printf("Audio driver %d: %s\n", i, SDL_GetAudioDriver(i);
}

Remarks

You can add useful comments here


CategoryAPI, CategoryAudio

None: SDL_GetNumAudioDrivers (last edited 2016-05-14 22:18:35 by PhilippWiesemann)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit