Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/elfmz/far2l.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'far2l/src/console/interf.hpp')
-rw-r--r--far2l/src/console/interf.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/far2l/src/console/interf.hpp b/far2l/src/console/interf.hpp
index fb16c6f6..35e05e64 100644
--- a/far2l/src/console/interf.hpp
+++ b/far2l/src/console/interf.hpp
@@ -119,12 +119,12 @@ void InitRecodeOutTable();
int WINAPI TextToCharInfo(const char *Text,WORD Attr, CHAR_INFO *CharInfo, int Length, DWORD Reserved);
-inline void SetVidChar(CHAR_INFO& CI,wchar_t Chr)
+inline void SetVidChar(CHAR_INFO& CI, COMP_CHAR Chr)
{
CI.Char.UnicodeChar = (Chr >= 0 && (Chr < L'\x20' || Chr == L'\x7f')) ? Oem2Unicode[Chr] : Chr;
}
-int HiStrlen(const wchar_t *Str);
+int HiStrCellsCount(const wchar_t *Str);
int HiFindRealPos(const wchar_t *Str, int Pos, BOOL ShowAmp);
int HiFindNextVisualPos(const wchar_t *Str, int Pos, int Direct);
FARString& HiText2Str(FARString& strDest, const wchar_t *Str);