summaryrefslogtreecommitdiff
path: root/src/render/Font.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-10-11 10:33:02 +0300
committerSergeanur <s.anureev@yandex.ua>2020-10-11 10:33:02 +0300
commite26e85deb8d18ed99f94a50fd819886673d35c6a (patch)
tree8ffdbd21e3c324eb57a00fa10c60798dc1811617 /src/render/Font.h
parent70ae4b192b7da1bf0a8a389aff942e287579accb (diff)
Some unicode funcs belong to Font.cpp + small fix
Diffstat (limited to 'src/render/Font.h')
-rw-r--r--src/render/Font.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/render/Font.h b/src/render/Font.h
index 48f5703d..51035601 100644
--- a/src/render/Font.h
+++ b/src/render/Font.h
@@ -1,5 +1,10 @@
#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);
+
struct CFontDetails
{
CRGBA color;