For many of you this will be trivial, but I am still sorting this thing out :
UNICODE :
say I have created with CB a simple console application :
int main(int argc, char** argv)
{
}
on the inside of my program I want to use unicode (by using wx in unicode), say :
wxString test;
In test I want to get argv[1], but that one is not unicode. How should I convert ?
Secondly, what will happen if my little program is run for example on a russion/chines/arabic os, and the specify unicode character string on the command line. Hopefully 'all bytes' of it will enter the argv, zero terminated (so let's hope no 0's in the middle) ?
I assume I am still missing some things, please fill me in.
many thanks,
Lieven