Convert String to AnsiString
You can find more information in comments below.
/**
Convert wide character string to ansi string
@param str Wide character string
@param replacer When unsupported by ansi string char is found, it will be replaced with this one. Default '?'
@return Ansi string
*/
AnsiString StringToAnsi(const String &str, const char replacer = '?');
Namespace: | nitisa |
Include: | Nitisa/Core/Strings.h |