]> git.jsancho.org Git - lugaru.git/blob - Source/alstubs.h
88412ad4c9e1d02776025a413009d9ea53811bc4
[lugaru.git] / Source / alstubs.h
1
2 AL_FUNC(AL,void,alGenSources,(ALsizei n, ALuint* sources),(n,sources),)
3 AL_FUNC(AL,void,alDeleteSources,(ALsizei n, ALuint* sources),(n,sources),)
4 AL_FUNC(AL,void,alSourcei,(ALuint sid, ALenum param, ALint value),(sid,param,value),)
5 AL_FUNC(AL,void,alSourcef,(ALuint sid, ALenum param, ALfloat value),(sid,param,value),)
6 AL_FUNC(AL,void,alSource3f,(ALuint sid, ALenum param, ALfloat f1, ALfloat f2, ALfloat f3),(sid,param,f1,f2,f3),)
7 AL_FUNC(AL,void,alGetSourceiv,(ALuint sid, ALenum pname, ALint* values),(sid,pname,values),)
8 AL_FUNC(AL,void,alSourcePlay,(ALuint sid),(sid),)
9 AL_FUNC(AL,void,alSourcePause,(ALuint sid),(sid),)
10 AL_FUNC(AL,void,alSourceStop,(ALuint sid),(sid),)
11 AL_FUNC(AL,void,alGenBuffers,(ALsizei n, ALuint* buffers),(n,buffers),)
12 AL_FUNC(AL,void,alDeleteBuffers,(ALsizei n, ALuint* buffers),(n,buffers),)
13 AL_FUNC(AL,void,alBufferData,(ALuint buffer, ALenum format, ALvoid *data, ALsizei size, ALsizei freq),(buffer,format,data,size,freq),)
14 AL_FUNC(AL,void,alListenerfv,(ALenum pname, ALfloat* param),(pname,param),)
15 AL_FUNC(AL,void,alListener3f,(ALenum pname, ALfloat f1, ALfloat f2, ALfloat f3),(pname,f1,f2,f3),)
16 AL_FUNC(AL,void,alListenerf,(ALenum pname, ALfloat param),(pname,param),)
17 AL_FUNC(AL,ALenum,alGetError,(ALvoid),(),return)
18 AL_FUNC(AL,const ALubyte*,alGetString,(ALenum param),(param),return)
19 AL_FUNC(AL,ALboolean,alIsExtensionPresent,(const ALubyte* fname),(fname),return)
20 AL_FUNC(AL,ALenum,alGetEnumValue,(const ALubyte* ename),(ename),return)
21 AL_FUNC(ALC,ALCcontext *,alcCreateContext,(ALCdevice *dev, ALint* attrlist),(dev,attrlist),return)
22 AL_FUNC(ALC,ALCenum,alcMakeContextCurrent,(ALCcontext *alcHandle),(alcHandle),return)
23 AL_FUNC(ALC,ALCcontext *,alcProcessContext,(ALCcontext *alcHandle),(alcHandle),return)
24 AL_FUNC(ALC,void,alcSuspendContext,(ALCcontext *alcHandle),(alcHandle),)
25 AL_FUNC(ALC,ALCenum,alcDestroyContext,(ALCcontext *alcHandle),(alcHandle),return)
26 AL_FUNC(ALC,ALCenum,alcGetError,(ALCdevice *dev),(dev),return)
27 AL_FUNC(ALC,ALCcontext *,alcGetCurrentContext,(ALvoid),(),return)
28 AL_FUNC(ALC,ALCdevice *,alcOpenDevice,(const ALubyte *tokstr),(tokstr),return)
29 AL_FUNC(ALC,void,alcCloseDevice,(ALCdevice *dev),(dev),)
30 AL_FUNC(ALC,ALCdevice*,alcGetContextsDevice,(ALCcontext *context),(context),return)