Pass the offset latency properties to the set handler
[openal-soft.git] / OpenAL32 / Include / alListener.h
blobee07d87cf5a08b108415bdf4189f73205720924c
1 #ifndef _AL_LISTENER_H_
2 #define _AL_LISTENER_H_
4 #include "alMain.h"
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 typedef struct ALlistener {
11 volatile ALfloat Position[3];
12 volatile ALfloat Velocity[3];
13 volatile ALfloat Forward[3];
14 volatile ALfloat Up[3];
15 volatile ALfloat Gain;
16 volatile ALfloat MetersPerUnit;
18 struct {
19 ALfloat Matrix[4][4];
20 ALfloat Velocity[3];
21 } Params;
22 } ALlistener;
24 #ifdef __cplusplus
26 #endif
28 #endif