Fix typo to get the proper minor ALC version
[openal-soft/openal-hmr.git] / OpenAL32 / Include / alu.h
blobb14180b2252a076959402c308c2b98d6febdcff5
1 #ifndef _ALU_H_
2 #define _ALU_H_
4 #include "AL/al.h"
5 #include "AL/alc.h"
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
11 enum {
12 FRONT_LEFT = 0,
13 FRONT_RIGHT,
14 SIDE_LEFT,
15 SIDE_RIGHT,
16 BACK_LEFT,
17 BACK_RIGHT,
18 CENTER,
19 LFE,
21 OUTPUTCHANNELS
24 extern ALboolean DuplicateStereo;
26 __inline ALuint aluBytesFromFormat(ALenum format);
27 __inline ALuint aluChannelsFromFormat(ALenum format);
28 ALvoid aluMixData(ALCcontext *context,ALvoid *buffer,ALsizei size,ALenum format);
30 #ifdef __cplusplus
32 #endif
34 #endif