vote up 1 vote down star

Can anybody please help me with how to get the language(english,chinese etc) of Windows OS through win32 API(C/C++)??

Thanks, Sourabh

flag

50% accept rate
It's just not that simple. There is no such thing as "the language"; there could be multiple langauges in concurrent use. Can you be more precise? Tip: read Michael Kaplan's blog ["Sorting it All out"](blogs.msdn.com/michkap/) – MSalters Aug 24 at 14:01

2 Answers

vote up 1 vote down check

You can get the default user locale (which I think is what you're asking) using GetUserDefaultLCID. This will give you an ID which can be used to determine the culture. See here for a table containing IDs and the cultures they represent.

For Vista or Windows 7, Microsoft recommend GetUserDefaultLocaleName.

link|flag
vote up 4 vote down

If you're asking about "Which language the OS menus and dialogs are dispalyed in" (i.e. which MUI - Multilingual User Interface kit - is installed), use the following:

More info:

link|flag
And then use GetLocaleInfo with LOCALE_SENGLANGUAGE to obtain ISO 639 from LANGID. – Yakeen Aug 24 at 14:38
I suspect this is nearer to what the OP was asking, and a much more comprehensive answer than mine. – Xiaofu Aug 24 at 14:43

Your Answer

Get an OpenID
or

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