shadowm

Untitled

Jun 23rd, 2011
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. char c[1024];
  2. GetLocaleInfoA(LOCALE_USER_DEFAULT,LOCALE_SISO639LANGNAME,c,1024);
  3. if(c[0]!='\0'){
  4. locale=c;
  5. GetLocaleInfoA(LOCALE_USER_DEFAULT,LOCALE_SISO3166CTRYNAME,c,1024);
  6. if(c[0]!='\0') locale+=std::string("_")+c;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment