diff options
Diffstat (limited to 'al/effect.h')
-rw-r--r-- | al/effect.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/al/effect.h b/al/effect.h index a1d43313..27e9dd72 100644 --- a/al/effect.h +++ b/al/effect.h @@ -1,6 +1,8 @@ #ifndef AL_EFFECT_H #define AL_EFFECT_H +#include <string_view> + #include "AL/al.h" #include "AL/efx.h" @@ -50,6 +52,8 @@ struct ALeffect { /* Self ID */ ALuint id{0u}; + static void SetName(ALCcontext *context, ALuint id, std::string_view name); + DISABLE_ALLOC() }; |