diff options
Diffstat (limited to 'Alc/alstring.h')
-rw-r--r-- | Alc/alstring.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Alc/alstring.h b/Alc/alstring.h index 5cbb6ac5..f53d2c57 100644 --- a/Alc/alstring.h +++ b/Alc/alstring.h @@ -41,6 +41,8 @@ void al_string_append_range(al_string *str, const al_string_char_type *from, con #include <wchar.h> /* Windows-only methods to deal with WideChar strings. */ void al_string_copy_wcstr(al_string *str, const wchar_t *from); +void al_string_append_wcstr(al_string *str, const wchar_t *from); +void al_string_append_wrange(al_string *str, const wchar_t *from, const wchar_t *to); #endif #endif /* ALSTRING_H */ |