aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alstring.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-11-11 20:40:02 -0800
committerChris Robinson <[email protected]>2018-11-11 20:40:02 -0800
commitf8bda31c72e073cfc36cc4b42574347657817c54 (patch)
treea63b8fb192db6146d9957abf054013eadb5f91f6 /Alc/alstring.h
parent51ed335833dab0cee5fc325e3a5c1968da934a49 (diff)
Remove unused wstr functions
Diffstat (limited to 'Alc/alstring.h')
-rw-r--r--Alc/alstring.h9
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