comparison src/audio/SDL_sysaudio.h @ 3793:2b4795e92b62 SDL-ryan-multiple-audio-device

Removed a FIXME
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 03 Oct 2006 22:19:45 +0000
parents 866c310e2cb5
children 589bc3d060cd
comparison
equal deleted inserted replaced
3792:866c310e2cb5 3793:2b4795e92b62
29 29
30 /* The SDL audio driver */ 30 /* The SDL audio driver */
31 typedef struct SDL_AudioDevice SDL_AudioDevice; 31 typedef struct SDL_AudioDevice SDL_AudioDevice;
32 #define _THIS SDL_AudioDevice *_this 32 #define _THIS SDL_AudioDevice *_this
33 33
34 /* !!! FIXME: rename these from "Audio" to "Device" ... */
35 typedef struct SDL_AudioDriverImpl 34 typedef struct SDL_AudioDriverImpl
36 { 35 {
37 int (*DetectDevices)(int iscapture); 36 int (*DetectDevices)(int iscapture);
38 const char *(*GetDeviceName)(int index, int iscapture); 37 const char *(*GetDeviceName)(int index, int iscapture);
39 int (*OpenDevice) (_THIS, const char *devname, int iscapture); 38 int (*OpenDevice) (_THIS, const char *devname, int iscapture);