문제

I'm porting a C++ game to Windows Phone 8. In iOS and Android I use the сurrent language name to select internal game resources (en, de, es, etc.). How I can get the current system language in Windows Phone 8 from C++?

For C# there is .NET solution with CultureInfo.CurrentUICulture, but it's inaccessible from a C++ Windows Phone 8 application.

도움이 되었습니까?

해결책

You should use GetUserPreferredUILanguages API for that.

Here's a sample.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top