author | Sam Lantinga |
Fri, 08 Apr 2011 13:03:26 -0700 | |
changeset 5535 | 96594ac5fd1a |
parent 5262 | b530ef003506 |
child 6138 | 4c64952a58fb |
permissions | -rw-r--r-- |
icculus@1532 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@5535 | 3 |
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org> |
icculus@1532 | 4 |
|
slouken@5535 | 5 |
This software is provided 'as-is', without any express or implied |
slouken@5535 | 6 |
warranty. In no event will the authors be held liable for any damages |
slouken@5535 | 7 |
arising from the use of this software. |
icculus@1532 | 8 |
|
slouken@5535 | 9 |
Permission is granted to anyone to use this software for any purpose, |
slouken@5535 | 10 |
including commercial applications, and to alter it and redistribute it |
slouken@5535 | 11 |
freely, subject to the following restrictions: |
icculus@1532 | 12 |
|
slouken@5535 | 13 |
1. The origin of this software must not be misrepresented; you must not |
slouken@5535 | 14 |
claim that you wrote the original software. If you use this software |
slouken@5535 | 15 |
in a product, an acknowledgment in the product documentation would be |
slouken@5535 | 16 |
appreciated but is not required. |
slouken@5535 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
slouken@5535 | 18 |
misrepresented as being the original software. |
slouken@5535 | 19 |
3. This notice may not be removed or altered from any source distribution. |
icculus@1532 | 20 |
*/ |
icculus@1532 | 21 |
#include "SDL_config.h" |
icculus@1532 | 22 |
|
icculus@1532 | 23 |
#ifndef _SDL_dummyaudio_h |
icculus@1532 | 24 |
#define _SDL_dummyaudio_h |
icculus@1532 | 25 |
|
icculus@1532 | 26 |
#include "../SDL_sysaudio.h" |
icculus@1532 | 27 |
|
icculus@2049 | 28 |
/* Hidden "this" pointer for the audio functions */ |
icculus@1532 | 29 |
#define _THIS SDL_AudioDevice *this |
icculus@1532 | 30 |
|
slouken@1895 | 31 |
struct SDL_PrivateAudioData |
slouken@1895 | 32 |
{ |
slouken@1895 | 33 |
/* The file descriptor for the audio device */ |
slouken@1895 | 34 |
Uint8 *mixbuf; |
slouken@1895 | 35 |
Uint32 mixlen; |
slouken@1895 | 36 |
Uint32 write_delay; |
slouken@1895 | 37 |
Uint32 initial_calls; |
icculus@1532 | 38 |
}; |
icculus@1532 | 39 |
|
icculus@1532 | 40 |
#endif /* _SDL_dummyaudio_h */ |
slouken@1895 | 41 |
/* vi: set ts=4 sw=4 expandtab: */ |