Use powf when available
[openal-soft.git] / OpenAL32 / Include / alListener.h
blobd22261fa22ece4175490569fd88297707dcaa3ca
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 ALfloat MetersPerUnit;
20 } ALlistener;
22 #ifdef __cplusplus
24 #endif
26 #endif