Mercurial > sdl-ios-xcode
comparison src/audio/dmedia/SDL_irixaudio.h @ 3820:1f156fd874fa SDL-ryan-multiple-audio-device
Moved more audio drivers to 1.3 API (all 5 MiNT backends, BSD, IRIX...), and
some other tweaks in already-converted drivers.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sat, 07 Oct 2006 05:36:36 +0000 |
parents | c121d94672cb |
children | efdfe292bd88 |
comparison
equal
deleted
inserted
replaced
3819:b225d9820ee3 | 3820:1f156fd874fa |
---|---|
31 /* Hidden "this" pointer for the audio functions */ | 31 /* Hidden "this" pointer for the audio functions */ |
32 #define _THIS SDL_AudioDevice *this | 32 #define _THIS SDL_AudioDevice *this |
33 | 33 |
34 struct SDL_PrivateAudioData | 34 struct SDL_PrivateAudioData |
35 { | 35 { |
36 /* The handle for the audio device */ | 36 ALport audio_port; /* The handle for the audio device */ |
37 ALport audio_port; | 37 Uint8 *mixbuf; /* The app mixing buffer */ |
38 | |
39 Uint8 *mixbuf; /* The app mixing buffer */ | |
40 }; | 38 }; |
41 | |
42 /* Old variable names */ | |
43 #define audio_port (this->hidden->audio_port) | |
44 #define mixbuf (this->hidden->mixbuf) | |
45 | 39 |
46 #endif /* _SDL_lowaudio_h */ | 40 #endif /* _SDL_lowaudio_h */ |
47 /* vi: set ts=4 sw=4 expandtab: */ | 41 /* vi: set ts=4 sw=4 expandtab: */ |