author | Sam Lantinga |
Sat, 04 Mar 2006 08:24:35 +0000 | |
changeset 1465 | 8dfa9a6d69a5 |
parent 1402 | d910939febfa |
child 1662 | 782fd950bd46 |
child 4159 | a1b03ba2fcd0 |
permissions | -rw-r--r-- |
slouken@68 | 1 |
/* |
slouken@68 | 2 |
SDL - Simple DirectMedia Layer |
slouken@1312 | 3 |
Copyright (C) 1997-2006 Sam Lantinga |
slouken@68 | 4 |
|
slouken@68 | 5 |
This library is free software; you can redistribute it and/or |
slouken@1312 | 6 |
modify it under the terms of the GNU Lesser General Public |
slouken@68 | 7 |
License as published by the Free Software Foundation; either |
slouken@1312 | 8 |
version 2.1 of the License, or (at your option) any later version. |
slouken@68 | 9 |
|
slouken@68 | 10 |
This library is distributed in the hope that it will be useful, |
slouken@68 | 11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
slouken@68 | 12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
slouken@1312 | 13 |
Lesser General Public License for more details. |
slouken@68 | 14 |
|
slouken@1312 | 15 |
You should have received a copy of the GNU Lesser General Public |
slouken@1312 | 16 |
License along with this library; if not, write to the Free Software |
slouken@1312 | 17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
slouken@68 | 18 |
|
slouken@68 | 19 |
Sam Lantinga |
slouken@252 | 20 |
slouken@libsdl.org |
slouken@68 | 21 |
*/ |
slouken@1402 | 22 |
#include "SDL_config.h" |
slouken@68 | 23 |
|
slouken@68 | 24 |
#ifndef _SDL_diskaudio_h |
slouken@68 | 25 |
#define _SDL_diskaudio_h |
slouken@68 | 26 |
|
slouken@1465 | 27 |
#include "SDL_rwops.h" |
slouken@1361 | 28 |
#include "../SDL_sysaudio.h" |
slouken@68 | 29 |
|
slouken@68 | 30 |
/* Hidden "this" pointer for the video functions */ |
slouken@68 | 31 |
#define _THIS SDL_AudioDevice *this |
slouken@68 | 32 |
|
slouken@68 | 33 |
struct SDL_PrivateAudioData { |
slouken@68 | 34 |
/* The file descriptor for the audio device */ |
slouken@1465 | 35 |
SDL_RWops *output; |
slouken@1465 | 36 |
Uint8 *mixbuf; |
slouken@1465 | 37 |
Uint32 mixlen; |
slouken@1465 | 38 |
Uint32 write_delay; |
slouken@68 | 39 |
}; |
slouken@68 | 40 |
|
slouken@68 | 41 |
#endif /* _SDL_diskaudio_h */ |