1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-19 23:44:48 +00:00
qb64/internal/c/parts/audio/out/android/OpenAL/Alc/alListener.h
2015-10-30 23:18:44 +11:00

24 lines
315 B
C

#ifndef _AL_LISTENER_H_
#define _AL_LISTENER_H_
#include "AL/al.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct ALlistener_struct
{
ALfp Position[3];
ALfp Velocity[3];
ALfp Forward[3];
ALfp Up[3];
ALfp Gain;
ALfp MetersPerUnit;
} ALlistener;
#ifdef __cplusplus
}
#endif
#endif