123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- /*
- ===========================================================================
- Doom 3 GPL Source Code
- Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
- This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
- Doom 3 Source Code is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- Doom 3 Source Code is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
- In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
- If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
- ===========================================================================
- */
- #include "../idlib/precompiled.h"
- #include "../sound/snd_local.h"
- AL_API ALenum AL_APIENTRY alGetError() {
- return AL_NO_ERROR;
- }
- AL_API ALboolean AL_APIENTRY alIsSource( ALuint sid ) {
- return AL_FALSE;
- }
- AL_API void AL_APIENTRY alGenBuffers( ALsizei n, ALuint* buffers ) { }
- AL_API void AL_APIENTRY alSourceStop( ALuint sid ) { }
- AL_API void AL_APIENTRY alGetSourcei( ALuint sid, ALenum pname, ALint* value ) { }
- AL_API ALint AL_APIENTRY alGetInteger( ALenum param ) { return 0; }
- ALC_API void ALC_APIENTRY alcSuspendContext( ALCcontext *alcHandle ) { }
- ALC_API ALCdevice * ALC_APIENTRY alcOpenDevice( const ALchar *tokstr ) {
- return NULL;
- }
- AL_API void AL_APIENTRY alDeleteBuffers( ALsizei n, const ALuint* buffers ) { }
- AL_API ALboolean AL_APIENTRY alIsExtensionPresent( const ALchar* fname ) {
- return AL_FALSE;
- }
- AL_API void AL_APIENTRY alBufferData( ALuint buffer,
- ALenum format,
- const ALvoid* data,
- ALsizei size,
- ALsizei freq ) { }
- ALC_API ALCboolean ALC_APIENTRY alcMakeContextCurrent( ALCcontext *alcHandle ) {
- return 0;
- }
- ALC_API ALCvoid ALC_APIENTRY alcProcessContext( ALCcontext *alcHandle ) {
- return;
- }
- ALC_API ALCvoid ALC_APIENTRY alcDestroyContext( ALCcontext *alcHandle ) {
- return;
- }
- ALC_API const ALCchar * ALC_APIENTRY alcGetString( ALCdevice *deviceHandle, ALCenum token ) {
- return NULL;
- }
- AL_API void AL_APIENTRY alBufferData( ALuint buffer,
- ALenum format,
- ALvoid* data,
- ALsizei size,
- ALsizei freq ) { }
- AL_API void AL_APIENTRY alDeleteBuffers( ALsizei n, ALuint* buffers ) { }
- AL_API ALboolean AL_APIENTRY alIsExtensionPresent( ALubyte* fname ) {
- return AL_FALSE;
- }
- AL_API void AL_APIENTRY alDeleteSources( ALsizei n, const ALuint* sources ) { }
- AL_API ALenum AL_APIENTRY alGetEnumValue( const ALchar* ename ) {
- return 0;
- }
- AL_API void* AL_APIENTRY alGetProcAddress( const ALchar* fname ) {
- return NULL;
- }
- ALC_API ALCcontext * ALC_APIENTRY alcCreateContext( ALCdevice *dev,
- const ALCint* attrlist ) {
- return NULL;
- }
- ALC_API ALCdevice * ALC_APIENTRY alcOpenDevice( ALubyte *tokstr ) {
- return NULL;
- }
- AL_API void AL_APIENTRY alListenerfv( ALenum pname, const ALfloat* param ) { }
- AL_API void AL_APIENTRY alSourceQueueBuffers( ALuint sid, ALsizei numEntries, const ALuint *bids ) { }
- AL_API void AL_APIENTRY alSourcei( ALuint sid, ALenum param, ALint value ) { }
- AL_API void AL_APIENTRY alListenerf( ALenum pname, ALfloat param ) { }
- ALC_API ALCboolean ALC_APIENTRY alcCloseDevice( ALCdevice *dev ) { return false; }
- AL_API ALboolean AL_APIENTRY alIsBuffer( ALuint buffer ) {
- return AL_FALSE;
- }
- AL_API void AL_APIENTRY alSource3f( ALuint sid, ALenum param,
- ALfloat f1, ALfloat f2, ALfloat f3 ) { }
- AL_API void AL_APIENTRY alGenSources( ALsizei n, ALuint* sources ) { }
- AL_API void AL_APIENTRY alSourcef( ALuint sid, ALenum param, ALfloat value ) { }
- AL_API void AL_APIENTRY alSourceUnqueueBuffers( ALuint sid, ALsizei numEntries, ALuint *bids ) { }
- AL_API void AL_APIENTRY alSourcePlay( ALuint sid ) { }
|