diff options
Diffstat (limited to 'Alc/alstring.h')
-rw-r--r-- | Alc/alstring.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Alc/alstring.h b/Alc/alstring.h index 923a5ea2..f991310f 100644 --- a/Alc/alstring.h +++ b/Alc/alstring.h @@ -42,15 +42,6 @@ void alstr_append_char(al_string *str, const al_string_char_type c); void alstr_append_cstr(al_string *str, const al_string_char_type *from); void alstr_append_range(al_string *str, const al_string_char_type *from, const al_string_char_type *to); -#ifdef _WIN32 -#include <wchar.h> -/* Windows-only methods to deal with WideChar strings. */ -void alstr_copy_wcstr(al_string *str, const wchar_t *from); -void alstr_append_wcstr(al_string *str, const wchar_t *from); -void alstr_copy_wrange(al_string *str, const wchar_t *from, const wchar_t *to); -void alstr_append_wrange(al_string *str, const wchar_t *from, const wchar_t *to); -#endif - #ifdef __cplusplus } /* extern "C" */ #endif |