diff options
author | Chris Robinson <[email protected]> | 2018-01-21 16:32:37 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-01-21 16:32:37 -0800 |
commit | f6276164f3fc6f8ee06dfd65bf3676b0b0bbb8b0 (patch) | |
tree | c3afc8e18792ec341cd66b696c3851c24e10b334 /OpenAL32 | |
parent | dcb934fc2e46728d9a9d04e8e1e583518942a238 (diff) |
Fix the return type of the LPALUNMAPBUFFERSOFT typedef
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index dbb4f14b..358b0bf6 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -52,7 +52,7 @@ typedef unsigned int ALbitfieldSOFT; #define AL_MAP_READ_BIT_SOFT 0x01000000 #define AL_MAP_WRITE_BIT_SOFT 0x02000000 typedef void* (AL_APIENTRY*LPALMAPBUFFERSOFT)(ALuint buffer, ALsizei offset, ALsizei length, ALbitfieldSOFT access); -typedef void* (AL_APIENTRY*LPALUNMAPBUFFERSOFT)(ALuint buffer); +typedef void (AL_APIENTRY*LPALUNMAPBUFFERSOFT)(ALuint buffer); #ifdef AL_ALEXT_PROTOTYPES AL_API void* AL_APIENTRY alMapBufferSOFT(ALuint buffer, ALsizei offset, ALsizei length, ALbitfieldSOFT access); AL_API void AL_APIENTRY alUnmapBufferSOFT(ALuint buffer); |