comparison src/audio/baudio/SDL_beaudio.h @ 1895:c121d94672cb

SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 10 Jul 2006 21:04:37 +0000
parents d910939febfa
children 5f6550e5184f 9dc81c6acaf5
comparison
equal deleted inserted replaced
1894:c69cee13dd76 1895:c121d94672cb
27 #include "../SDL_sysaudio.h" 27 #include "../SDL_sysaudio.h"
28 28
29 /* Hidden "this" pointer for the video functions */ 29 /* Hidden "this" pointer for the video functions */
30 #define _THIS SDL_AudioDevice *_this 30 #define _THIS SDL_AudioDevice *_this
31 31
32 struct SDL_PrivateAudioData { 32 struct SDL_PrivateAudioData
33 BSoundPlayer *audio_obj; 33 {
34 BSoundPlayer *audio_obj;
34 }; 35 };
35 36
36 /* Old variable names */ 37 /* Old variable names */
37 #define audio_obj (_this->hidden->audio_obj) 38 #define audio_obj (_this->hidden->audio_obj)
38 39
39 #endif /* _SDL_lowaudio_h */ 40 #endif /* _SDL_lowaudio_h */
41 /* vi: set ts=4 sw=4 expandtab: */