up vote 2 down vote favorite
share [g+] share [fb]

When launching a process with CreateProcessW(), is it possible to have the process created with a different MBCP locale/codepage then the one that is configured as the system-wide default code page? In the target process, this should have the same effect as calling _setmbcp().

The target process is not a unicode-enabled and uses a plain main(int argc, char **argv) entry point. I would like to be able to select the code page to which unicode arguments passed to CreateProcessW() are converted to be different from the system's default codepage for non-unicode programs.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I believe (and it's been a long time since I've had to know this) the child process inherits the locale of the parent process (or thread therein) -- have you tried switching the thread locale, launching your process (and switching back)?

link|improve this answer
This sounds like a good plan... I'll give it a try – VoidPointer Jan 8 '09 at 9:16
feedback

I just came accross a Microsoft utility: AppLocale, which seems to address just that need...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.