Hello!
When I try to use Unicode with some language (for example, with Russian), I get an unreadable text. My code is:
#include <windows.h>
void start()
{
MessageBoxW(0, L"Hello, World!", NULL, MB_OK);
}
In the MessageBox window the text ("Hello, World!" - in Russian, of course) is totally unreadable. But if I type the text in English, it's all right. If I transfer my code (without any changes) into Visual C++ 6.0, it's all right too - both with Russian and English texts. I try the latest (4.50.90) version of the Pelles C for Windows, but the trouble with Unicode is still existing
Can I fix this trouble and how?
Regards,
r1cs