Some unicode funcs belong to Font.cpp + small fix

This commit is contained in:
Sergeanur 2020-10-11 10:33:02 +03:00
commit e26e85deb8
7 changed files with 36 additions and 32 deletions

View file

@ -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;