Mercurial > audio-send
annotate OpenAL32/Include/alListener.h @ 26:56f83c170251
adding hard-to-compile artifacts for other systems
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 19 Nov 2011 19:17:37 -0700 |
parents | f9476ff7637e |
children |
rev | line source |
---|---|
rlm@0 | 1 #ifndef _AL_LISTENER_H_ |
rlm@0 | 2 #define _AL_LISTENER_H_ |
rlm@0 | 3 |
rlm@0 | 4 #include "AL/al.h" |
rlm@0 | 5 |
rlm@0 | 6 #ifdef __cplusplus |
rlm@0 | 7 extern "C" { |
rlm@0 | 8 #endif |
rlm@0 | 9 |
rlm@0 | 10 typedef struct ALlistener_struct |
rlm@0 | 11 { |
rlm@0 | 12 ALfloat Position[3]; |
rlm@0 | 13 ALfloat Velocity[3]; |
rlm@0 | 14 ALfloat Forward[3]; |
rlm@0 | 15 ALfloat Up[3]; |
rlm@0 | 16 ALfloat Gain; |
rlm@0 | 17 ALfloat MetersPerUnit; |
rlm@0 | 18 } ALlistener; |
rlm@0 | 19 |
rlm@0 | 20 #ifdef __cplusplus |
rlm@0 | 21 } |
rlm@0 | 22 #endif |
rlm@0 | 23 |
rlm@0 | 24 #endif |