http://bugs.winehq.org/show_bug.cgi?id=6395
Summary: tons of "fixme:nls:MultiByteToWideChar MB_USEGLYPHCHARS not supported" messages Product: Wine Version: 20050930 Platform: Other OS/Version: other Status: UNCONFIRMED Severity: trivial Priority: P2 Component: wine-msvcrt AssignedTo: wine-bugs@winehq.org ReportedBy: avarga@freemail.hu
Whenever I run FAR Manager in the console, it works well but tons of "fixme:nls:MultiByteToWideChar MB_USEGLYPHCHARS not supported" messages pour out on the console all the time.
Could you please make sure that it is printed only once? Like
static bool fixmeAlreadyPrinted=false; if (!fixmeAlreadyPrinted) { fixmeAlreadyPrinted=true; printf("fixme...."); }
Thanks...