|
From: Anders N. <a.n...@de...> - 2000-11-11 14:55:51
|
Hi!
How can I change to another character set? When I use cout to write scandinavian characters they are replaced by other characters. Now I use this function but there must be a better way.
int ConvertToExtendANSI(int kod)
{
if (kod == -59)
return (143);
if (kod == -60)
return (142);
if (kod == -42)
return (153);
return (kod);
}
Thanks for many interesting questions and answers in this mailing list!
Anders
|