summaryrefslogtreecommitdiffstats
path: root/src/render/Font.h
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2020-10-11 11:58:11 +0200
committerNikolay Korolev <nickvnuk@gmail.com>2020-10-11 11:58:11 +0200
commit552f308e9e0a745852ca11064b6b31e16b115917 (patch)
treea88d109962a7de5594f3781fe1e388879936218c /src/render/Font.h
parentControl updates (diff)
parentMerge pull request #760 from Sergeanur/VC/TextFinish (diff)
downloadre3-552f308e9e0a745852ca11064b6b31e16b115917.tar
re3-552f308e9e0a745852ca11064b6b31e16b115917.tar.gz
re3-552f308e9e0a745852ca11064b6b31e16b115917.tar.bz2
re3-552f308e9e0a745852ca11064b6b31e16b115917.tar.lz
re3-552f308e9e0a745852ca11064b6b31e16b115917.tar.xz
re3-552f308e9e0a745852ca11064b6b31e16b115917.tar.zst
re3-552f308e9e0a745852ca11064b6b31e16b115917.zip
Diffstat (limited to 'src/render/Font.h')
-rw-r--r--src/render/Font.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/render/Font.h b/src/render/Font.h
index ca0ed7d0..47a39f73 100644
--- a/src/render/Font.h
+++ b/src/render/Font.h
@@ -1,5 +1,11 @@
#pragma once
+void AsciiToUnicode(const char *src, wchar *dst);
+void UnicodeStrcpy(wchar *dst, const wchar *src);
+void UnicodeStrcat(wchar *dst, wchar *append);
+int UnicodeStrlen(const wchar *str);
+void UnicodeMakeUpperCase(wchar *dst, const wchar *src);
+
struct CFontDetails
{
CRGBA color;