Add a basic WaveOut device
[openal-soft.git] / OpenAL32 / Include / alListener.h
blob467193e35c5e0c4fc67a194d6754b345bf8dccd3
1 #ifndef _AL_LISTENER_H_
2 #define _AL_LISTENER_H_
4 #include "AL/al.h"
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 typedef struct ALlistener_struct
12 ALfloat Position[3];
13 ALfloat Velocity[3];
14 ALfloat Forward[3];
15 ALfloat Up[3];
16 ALfloat Gain;
17 ALfloat MetersPerUnit;
18 } ALlistener;
20 #ifdef __cplusplus
22 #endif
24 #endif