25 lines
416 B
C
Raw Normal View History

2007-11-13 18:02:18 -08:00
#ifndef _AL_LISTENER_H_
#define _AL_LISTENER_H_
2012-09-14 02:42:36 -07:00
#include "alMain.h"
2007-11-13 18:02:18 -08:00
#ifdef __cplusplus
extern "C" {
#endif
typedef struct ALlistener {
2011-09-11 01:26:09 -07:00
volatile ALfloat Position[3];
volatile ALfloat Velocity[3];
volatile ALfloat Forward[3];
volatile ALfloat Up[3];
volatile ALfloat Matrix[4][4];
volatile ALfloat Gain;
volatile ALfloat MetersPerUnit;
2007-11-13 18:02:18 -08:00
} ALlistener;
#ifdef __cplusplus
}
#endif
#endif