diff options
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 9c1ef099..3a26bff2 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -358,6 +358,7 @@ extern "C" { #endif struct Hrtf; +struct HrtfEntry; #define DEFAULT_OUTPUT_RATE (44100) @@ -633,12 +634,12 @@ typedef struct DirectHrtfState { } Chan[]; } DirectHrtfState; -typedef struct HrtfEntry { +typedef struct EnumeratedHrtf { al_string name; - const struct Hrtf *hrtf; -} HrtfEntry; -TYPEDEF_VECTOR(HrtfEntry, vector_HrtfEntry) + const struct HrtfEntry *hrtf; +} EnumeratedHrtf; +TYPEDEF_VECTOR(EnumeratedHrtf, vector_EnumeratedHrtf) /* Maximum delay in samples for speaker distance compensation. */ @@ -702,7 +703,7 @@ struct ALCdevice_struct DirectHrtfState *Hrtf; al_string HrtfName; const struct Hrtf *HrtfHandle; - vector_HrtfEntry HrtfList; + vector_EnumeratedHrtf HrtfList; ALCenum HrtfStatus; /* UHJ encoder state */ |