summaryrefslogtreecommitdiffstats
path: root/src/core/Text.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-07-10 13:42:48 +0200
committeraap <aap@papnet.eu>2019-07-10 13:42:48 +0200
commitd360229b5b3a3ef82a8defd6672bfda81ded9326 (patch)
tree3e33368038e76fe770bb3cc7cb7dd3ae0e794bc5 /src/core/Text.h
parentMerge pull request #127 from gennariarmando/master (diff)
downloadre3-d360229b5b3a3ef82a8defd6672bfda81ded9326.tar
re3-d360229b5b3a3ef82a8defd6672bfda81ded9326.tar.gz
re3-d360229b5b3a3ef82a8defd6672bfda81ded9326.tar.bz2
re3-d360229b5b3a3ef82a8defd6672bfda81ded9326.tar.lz
re3-d360229b5b3a3ef82a8defd6672bfda81ded9326.tar.xz
re3-d360229b5b3a3ef82a8defd6672bfda81ded9326.tar.zst
re3-d360229b5b3a3ef82a8defd6672bfda81ded9326.zip
Diffstat (limited to 'src/core/Text.h')
-rw-r--r--src/core/Text.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/Text.h b/src/core/Text.h
index 15ab7a8f..f554628c 100644
--- a/src/core/Text.h
+++ b/src/core/Text.h
@@ -1,7 +1,10 @@
#pragma once
void AsciiToUnicode(const char *src, wchar *dst);
-char UnicodeToAscii(wchar *src);
+char *UnicodeToAscii(wchar *src);
+char *UnicodeToAsciiForSaveLoad(wchar *src);
+void UnicodeStrcpy(wchar *dst, const wchar *src);
+int UnicodeStrlen(const wchar *str);
void TextCopy(wchar *dst, const wchar *src);
struct CKeyEntry