Add new listener property definition
[openal-soft.git] / OpenAL32 / Include / alListener.h
blob587b2151b9684f5be9ea1a530d7ae123c98d23f5
1 #ifndef _AL_LISTENER_H_
2 #define _AL_LISTENER_H_
4 #include "AL/al.h"
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 #define AL_METERS_PER_UNIT 0x20004
12 typedef struct ALlistener_struct
14 ALfloat Position[3];
15 ALfloat Velocity[3];
16 ALfloat Forward[3];
17 ALfloat Up[3];
18 ALfloat Gain;
19 } ALlistener;
21 #ifdef __cplusplus
23 #endif
25 #endif