[KERNEL32]
[reactos.git] / reactos / dll / win32 / kernel32 / winnls / string / lang.c
1 /*
2 * Locale support
3 *
4 * Copyright 1995 Martin von Loewis
5 * Copyright 1998 David Lee Lambert
6 * Copyright 2000 Julio César Gázquez
7 * Copyright 2002 Alexandre Julliard for CodeWeavers
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24 #include <k32.h>
25
26 #define NDEBUG
27 #include <debug.h>
28 DEBUG_CHANNEL(nls);
29
30 #include "lcformat_private.h"
31
32 #define REG_SZ 1
33 extern int wine_fold_string(int flags, const WCHAR *src, int srclen, WCHAR *dst, int dstlen);
34 extern int wine_get_sortkey(int flags, const WCHAR *src, int srclen, char *dst, int dstlen);
35 extern int wine_compare_string(int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2);
36
37 extern HMODULE kernel32_handle;
38
39 #define LOCALE_LOCALEINFOFLAGSMASK (LOCALE_NOUSEROVERRIDE|LOCALE_USE_CP_ACP|\
40 LOCALE_RETURN_NUMBER|LOCALE_RETURN_GENITIVE_NAMES)
41
42 static const WCHAR szLocaleKeyName[] = {
43 '\\', 'R', 'e', 'g', 'i', 's', 't', 'r', 'y', '\\',
44 'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
45 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
46 'C','o','n','t','r','o','l','\\','N','l','s','\\','L','o','c','a','l','e',0
47 };
48
49 static const WCHAR szLangGroupsKeyName[] = {
50 '\\', 'R', 'e', 'g', 'i', 's', 't', 'r', 'y', '\\',
51 'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
52 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
53 'C','o','n','t','r','o','l','\\','N','l','s','\\',
54 'L','a','n','g','u','a','g','e',' ','G','r','o','u','p','s',0
55 };
56
57 /* Charset to codepage map, sorted by name. */
58 static const struct charset_entry
59 {
60 const char *charset_name;
61 UINT codepage;
62 } charset_names[] =
63 {
64 { "BIG5", 950 },
65 { "CP1250", 1250 },
66 { "CP1251", 1251 },
67 { "CP1252", 1252 },
68 { "CP1253", 1253 },
69 { "CP1254", 1254 },
70 { "CP1255", 1255 },
71 { "CP1256", 1256 },
72 { "CP1257", 1257 },
73 { "CP1258", 1258 },
74 { "CP932", 932 },
75 { "CP936", 936 },
76 { "CP949", 949 },
77 { "CP950", 950 },
78 { "EUCJP", 20932 },
79 { "GB2312", 936 },
80 { "IBM037", 37 },
81 { "IBM1026", 1026 },
82 { "IBM424", 424 },
83 { "IBM437", 437 },
84 { "IBM500", 500 },
85 { "IBM850", 850 },
86 { "IBM852", 852 },
87 { "IBM855", 855 },
88 { "IBM857", 857 },
89 { "IBM860", 860 },
90 { "IBM861", 861 },
91 { "IBM862", 862 },
92 { "IBM863", 863 },
93 { "IBM864", 864 },
94 { "IBM865", 865 },
95 { "IBM866", 866 },
96 { "IBM869", 869 },
97 { "IBM874", 874 },
98 { "IBM875", 875 },
99 { "ISO88591", 28591 },
100 { "ISO885910", 28600 },
101 { "ISO885913", 28603 },
102 { "ISO885914", 28604 },
103 { "ISO885915", 28605 },
104 { "ISO885916", 28606 },
105 { "ISO88592", 28592 },
106 { "ISO88593", 28593 },
107 { "ISO88594", 28594 },
108 { "ISO88595", 28595 },
109 { "ISO88596", 28596 },
110 { "ISO88597", 28597 },
111 { "ISO88598", 28598 },
112 { "ISO88599", 28599 },
113 { "KOI8R", 20866 },
114 { "KOI8U", 21866 },
115 { "UTF8", CP_UTF8 }
116 };
117
118
119 struct locale_name
120 {
121 WCHAR win_name[128]; /* Windows name ("en-US") */
122 WCHAR lang[128]; /* language ("en") (note: buffer contains the other strings too) */
123 WCHAR *country; /* country ("US") */
124 WCHAR *charset; /* charset ("UTF-8") for Unix format only */
125 WCHAR *script; /* script ("Latn") for Windows format only */
126 WCHAR *modifier; /* modifier or sort order */
127 LCID lcid; /* corresponding LCID */
128 int matches; /* number of elements matching LCID (0..4) */
129 UINT codepage; /* codepage corresponding to charset */
130 };
131
132 /* locale ids corresponding to the various Unix locale parameters */
133 static LCID lcid_LC_COLLATE;
134 static LCID lcid_LC_CTYPE;
135 static LCID lcid_LC_MONETARY;
136 static LCID lcid_LC_NUMERIC;
137 static LCID lcid_LC_TIME;
138 static LCID lcid_LC_PAPER;
139 static LCID lcid_LC_MEASUREMENT;
140 static LCID lcid_LC_TELEPHONE;
141
142 /* Copy Ascii string to Unicode without using codepages */
143 static inline void strcpynAtoW( WCHAR *dst, const char *src, size_t n )
144 {
145 while (n > 1 && *src)
146 {
147 *dst++ = (unsigned char)*src++;
148 n--;
149 }
150 if (n) *dst = 0;
151 }
152
153
154 /***********************************************************************
155 * get_lcid_codepage
156 *
157 * Retrieve the ANSI codepage for a given locale.
158 */
159 static inline UINT get_lcid_codepage( LCID lcid )
160 {
161 UINT ret;
162 if (!GetLocaleInfoW( lcid, LOCALE_IDEFAULTANSICODEPAGE|LOCALE_RETURN_NUMBER, (WCHAR *)&ret,
163 sizeof(ret)/sizeof(WCHAR) )) ret = 0;
164 return ret;
165 }
166
167 /***********************************************************************
168 * convert_default_lcid
169 *
170 * Get the default LCID to use for a given lctype in GetLocaleInfo.
171 */
172 static LCID convert_default_lcid( LCID lcid, LCTYPE lctype )
173 {
174 if (lcid == LOCALE_SYSTEM_DEFAULT ||
175 lcid == LOCALE_USER_DEFAULT ||
176 lcid == LOCALE_NEUTRAL)
177 {
178 LCID default_id = 0;
179
180 switch(lctype & 0xffff)
181 {
182 case LOCALE_SSORTNAME:
183 default_id = lcid_LC_COLLATE;
184 break;
185
186 case LOCALE_FONTSIGNATURE:
187 case LOCALE_IDEFAULTANSICODEPAGE:
188 case LOCALE_IDEFAULTCODEPAGE:
189 case LOCALE_IDEFAULTEBCDICCODEPAGE:
190 case LOCALE_IDEFAULTMACCODEPAGE:
191 case LOCALE_IDEFAULTUNIXCODEPAGE:
192 default_id = lcid_LC_CTYPE;
193 break;
194
195 case LOCALE_ICURRDIGITS:
196 case LOCALE_ICURRENCY:
197 case LOCALE_IINTLCURRDIGITS:
198 case LOCALE_INEGCURR:
199 case LOCALE_INEGSEPBYSPACE:
200 case LOCALE_INEGSIGNPOSN:
201 case LOCALE_INEGSYMPRECEDES:
202 case LOCALE_IPOSSEPBYSPACE:
203 case LOCALE_IPOSSIGNPOSN:
204 case LOCALE_IPOSSYMPRECEDES:
205 case LOCALE_SCURRENCY:
206 case LOCALE_SINTLSYMBOL:
207 case LOCALE_SMONDECIMALSEP:
208 case LOCALE_SMONGROUPING:
209 case LOCALE_SMONTHOUSANDSEP:
210 case LOCALE_SNATIVECURRNAME:
211 default_id = lcid_LC_MONETARY;
212 break;
213
214 case LOCALE_IDIGITS:
215 case LOCALE_IDIGITSUBSTITUTION:
216 case LOCALE_ILZERO:
217 case LOCALE_INEGNUMBER:
218 case LOCALE_SDECIMAL:
219 case LOCALE_SGROUPING:
220 //case LOCALE_SNAN:
221 case LOCALE_SNATIVEDIGITS:
222 case LOCALE_SNEGATIVESIGN:
223 //case LOCALE_SNEGINFINITY:
224 //case LOCALE_SPOSINFINITY:
225 case LOCALE_SPOSITIVESIGN:
226 case LOCALE_STHOUSAND:
227 default_id = lcid_LC_NUMERIC;
228 break;
229
230 case LOCALE_ICALENDARTYPE:
231 case LOCALE_ICENTURY:
232 case LOCALE_IDATE:
233 case LOCALE_IDAYLZERO:
234 case LOCALE_IFIRSTDAYOFWEEK:
235 case LOCALE_IFIRSTWEEKOFYEAR:
236 case LOCALE_ILDATE:
237 case LOCALE_IMONLZERO:
238 case LOCALE_IOPTIONALCALENDAR:
239 case LOCALE_ITIME:
240 case LOCALE_ITIMEMARKPOSN:
241 case LOCALE_ITLZERO:
242 case LOCALE_S1159:
243 case LOCALE_S2359:
244 case LOCALE_SABBREVDAYNAME1:
245 case LOCALE_SABBREVDAYNAME2:
246 case LOCALE_SABBREVDAYNAME3:
247 case LOCALE_SABBREVDAYNAME4:
248 case LOCALE_SABBREVDAYNAME5:
249 case LOCALE_SABBREVDAYNAME6:
250 case LOCALE_SABBREVDAYNAME7:
251 case LOCALE_SABBREVMONTHNAME1:
252 case LOCALE_SABBREVMONTHNAME2:
253 case LOCALE_SABBREVMONTHNAME3:
254 case LOCALE_SABBREVMONTHNAME4:
255 case LOCALE_SABBREVMONTHNAME5:
256 case LOCALE_SABBREVMONTHNAME6:
257 case LOCALE_SABBREVMONTHNAME7:
258 case LOCALE_SABBREVMONTHNAME8:
259 case LOCALE_SABBREVMONTHNAME9:
260 case LOCALE_SABBREVMONTHNAME10:
261 case LOCALE_SABBREVMONTHNAME11:
262 case LOCALE_SABBREVMONTHNAME12:
263 case LOCALE_SABBREVMONTHNAME13:
264 case LOCALE_SDATE:
265 case LOCALE_SDAYNAME1:
266 case LOCALE_SDAYNAME2:
267 case LOCALE_SDAYNAME3:
268 case LOCALE_SDAYNAME4:
269 case LOCALE_SDAYNAME5:
270 case LOCALE_SDAYNAME6:
271 case LOCALE_SDAYNAME7:
272 //case LOCALE_SDURATION:
273 case LOCALE_SLONGDATE:
274 case LOCALE_SMONTHNAME1:
275 case LOCALE_SMONTHNAME2:
276 case LOCALE_SMONTHNAME3:
277 case LOCALE_SMONTHNAME4:
278 case LOCALE_SMONTHNAME5:
279 case LOCALE_SMONTHNAME6:
280 case LOCALE_SMONTHNAME7:
281 case LOCALE_SMONTHNAME8:
282 case LOCALE_SMONTHNAME9:
283 case LOCALE_SMONTHNAME10:
284 case LOCALE_SMONTHNAME11:
285 case LOCALE_SMONTHNAME12:
286 case LOCALE_SMONTHNAME13:
287 case LOCALE_SSHORTDATE:
288 //case LOCALE_SSHORTESTDAYNAME1:
289 //case LOCALE_SSHORTESTDAYNAME2:
290 //case LOCALE_SSHORTESTDAYNAME3:
291 //case LOCALE_SSHORTESTDAYNAME4:
292 //case LOCALE_SSHORTESTDAYNAME5:
293 //case LOCALE_SSHORTESTDAYNAME6:
294 //case LOCALE_SSHORTESTDAYNAME7:
295 case LOCALE_STIME:
296 case LOCALE_STIMEFORMAT:
297 case LOCALE_SYEARMONTH:
298 default_id = lcid_LC_TIME;
299 break;
300
301 case LOCALE_IPAPERSIZE:
302 default_id = lcid_LC_PAPER;
303 break;
304
305 case LOCALE_IMEASURE:
306 default_id = lcid_LC_MEASUREMENT;
307 break;
308
309 case LOCALE_ICOUNTRY:
310 default_id = lcid_LC_TELEPHONE;
311 break;
312 }
313 if (default_id) lcid = default_id;
314 }
315 return ConvertDefaultLocale( lcid );
316 }
317
318 /***********************************************************************
319 * is_genitive_name_supported
320 *
321 * Determine could LCTYPE basically support genitive name form or not.
322 */
323 static BOOL is_genitive_name_supported( LCTYPE lctype )
324 {
325 switch(lctype & 0xffff)
326 {
327 case LOCALE_SMONTHNAME1:
328 case LOCALE_SMONTHNAME2:
329 case LOCALE_SMONTHNAME3:
330 case LOCALE_SMONTHNAME4:
331 case LOCALE_SMONTHNAME5:
332 case LOCALE_SMONTHNAME6:
333 case LOCALE_SMONTHNAME7:
334 case LOCALE_SMONTHNAME8:
335 case LOCALE_SMONTHNAME9:
336 case LOCALE_SMONTHNAME10:
337 case LOCALE_SMONTHNAME11:
338 case LOCALE_SMONTHNAME12:
339 case LOCALE_SMONTHNAME13:
340 return TRUE;
341 default:
342 return FALSE;
343 }
344 }
345
346 /***********************************************************************
347 * create_registry_key
348 *
349 * Create the Control Panel\\International registry key.
350 */
351 static inline HANDLE create_registry_key(void)
352 {
353 static const WCHAR cplW[] = {'C','o','n','t','r','o','l',' ','P','a','n','e','l',0};
354 static const WCHAR intlW[] = {'I','n','t','e','r','n','a','t','i','o','n','a','l',0};
355 OBJECT_ATTRIBUTES attr;
356 UNICODE_STRING nameW;
357 HANDLE cpl_key, hkey = 0;
358
359 if (RtlOpenCurrentUser( KEY_ALL_ACCESS, &hkey ) != STATUS_SUCCESS) return 0;
360
361 attr.Length = sizeof(attr);
362 attr.RootDirectory = hkey;
363 attr.ObjectName = &nameW;
364 attr.Attributes = 0;
365 attr.SecurityDescriptor = NULL;
366 attr.SecurityQualityOfService = NULL;
367 RtlInitUnicodeString( &nameW, cplW );
368
369 if (!NtCreateKey( &cpl_key, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL ))
370 {
371 NtClose( attr.RootDirectory );
372 attr.RootDirectory = cpl_key;
373 RtlInitUnicodeString( &nameW, intlW );
374 if (NtCreateKey( &hkey, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL )) hkey = 0;
375 }
376 NtClose( attr.RootDirectory );
377 return hkey;
378 }
379
380 /***********************************************************************
381 * GetUserDefaultLangID (KERNEL32.@)
382 *
383 * Get the default language Id for the current user.
384 *
385 * PARAMS
386 * None.
387 *
388 * RETURNS
389 * The current LANGID of the default language for the current user.
390 */
391 LANGID WINAPI GetUserDefaultLangID(void)
392 {
393 return LANGIDFROMLCID(GetUserDefaultLCID());
394 }
395
396
397 /***********************************************************************
398 * GetSystemDefaultLangID (KERNEL32.@)
399 *
400 * Get the default language Id for the system.
401 *
402 * PARAMS
403 * None.
404 *
405 * RETURNS
406 * The current LANGID of the default language for the system.
407 */
408 LANGID WINAPI GetSystemDefaultLangID(void)
409 {
410 return LANGIDFROMLCID(GetSystemDefaultLCID());
411 }
412
413
414 /***********************************************************************
415 * GetUserDefaultLCID (KERNEL32.@)
416 *
417 * Get the default locale Id for the current user.
418 *
419 * PARAMS
420 * None.
421 *
422 * RETURNS
423 * The current LCID of the default locale for the current user.
424 */
425 LCID WINAPI GetUserDefaultLCID(void)
426 {
427 LCID lcid;
428 NtQueryDefaultLocale( TRUE, &lcid );
429 return lcid;
430 }
431
432
433 /***********************************************************************
434 * GetSystemDefaultLCID (KERNEL32.@)
435 *
436 * Get the default locale Id for the system.
437 *
438 * PARAMS
439 * None.
440 *
441 * RETURNS
442 * The current LCID of the default locale for the system.
443 */
444 LCID WINAPI GetSystemDefaultLCID(void)
445 {
446 LCID lcid;
447 NtQueryDefaultLocale( FALSE, &lcid );
448 return lcid;
449 }
450
451
452 /***********************************************************************
453 * GetUserDefaultUILanguage (KERNEL32.@)
454 *
455 * Get the default user interface language Id for the current user.
456 *
457 * PARAMS
458 * None.
459 *
460 * RETURNS
461 * The current LANGID of the default UI language for the current user.
462 */
463 LANGID WINAPI GetUserDefaultUILanguage(void)
464 {
465 LANGID lang;
466 NtQueryDefaultUILanguage( &lang );
467 return lang;
468 }
469
470
471 /***********************************************************************
472 * GetSystemDefaultUILanguage (KERNEL32.@)
473 *
474 * Get the default user interface language Id for the system.
475 *
476 * PARAMS
477 * None.
478 *
479 * RETURNS
480 * The current LANGID of the default UI language for the system. This is
481 * typically the same language used during the installation process.
482 */
483 LANGID WINAPI GetSystemDefaultUILanguage(void)
484 {
485 LANGID lang;
486 NtQueryInstallUILanguage( &lang );
487 return lang;
488 }
489
490 /******************************************************************************
491 * get_locale_value_name
492 *
493 * Gets the registry value name for a given lctype.
494 */
495 static const WCHAR *get_locale_value_name( DWORD lctype )
496 {
497 static const WCHAR iCalendarTypeW[] = {'i','C','a','l','e','n','d','a','r','T','y','p','e',0};
498 static const WCHAR iCountryW[] = {'i','C','o','u','n','t','r','y',0};
499 static const WCHAR iCurrDigitsW[] = {'i','C','u','r','r','D','i','g','i','t','s',0};
500 static const WCHAR iCurrencyW[] = {'i','C','u','r','r','e','n','c','y',0};
501 static const WCHAR iDateW[] = {'i','D','a','t','e',0};
502 static const WCHAR iDigitsW[] = {'i','D','i','g','i','t','s',0};
503 static const WCHAR iFirstDayOfWeekW[] = {'i','F','i','r','s','t','D','a','y','O','f','W','e','e','k',0};
504 static const WCHAR iFirstWeekOfYearW[] = {'i','F','i','r','s','t','W','e','e','k','O','f','Y','e','a','r',0};
505 static const WCHAR iLDateW[] = {'i','L','D','a','t','e',0};
506 static const WCHAR iLZeroW[] = {'i','L','Z','e','r','o',0};
507 static const WCHAR iMeasureW[] = {'i','M','e','a','s','u','r','e',0};
508 static const WCHAR iNegCurrW[] = {'i','N','e','g','C','u','r','r',0};
509 static const WCHAR iNegNumberW[] = {'i','N','e','g','N','u','m','b','e','r',0};
510 static const WCHAR iPaperSizeW[] = {'i','P','a','p','e','r','S','i','z','e',0};
511 static const WCHAR iTLZeroW[] = {'i','T','L','Z','e','r','o',0};
512 static const WCHAR iTimePrefixW[] = {'i','T','i','m','e','P','r','e','f','i','x',0};
513 static const WCHAR iTimeW[] = {'i','T','i','m','e',0};
514 static const WCHAR s1159W[] = {'s','1','1','5','9',0};
515 static const WCHAR s2359W[] = {'s','2','3','5','9',0};
516 static const WCHAR sCountryW[] = {'s','C','o','u','n','t','r','y',0};
517 static const WCHAR sCurrencyW[] = {'s','C','u','r','r','e','n','c','y',0};
518 static const WCHAR sDateW[] = {'s','D','a','t','e',0};
519 static const WCHAR sDecimalW[] = {'s','D','e','c','i','m','a','l',0};
520 static const WCHAR sGroupingW[] = {'s','G','r','o','u','p','i','n','g',0};
521 static const WCHAR sLanguageW[] = {'s','L','a','n','g','u','a','g','e',0};
522 static const WCHAR sListW[] = {'s','L','i','s','t',0};
523 static const WCHAR sLongDateW[] = {'s','L','o','n','g','D','a','t','e',0};
524 static const WCHAR sMonDecimalSepW[] = {'s','M','o','n','D','e','c','i','m','a','l','S','e','p',0};
525 static const WCHAR sMonGroupingW[] = {'s','M','o','n','G','r','o','u','p','i','n','g',0};
526 static const WCHAR sMonThousandSepW[] = {'s','M','o','n','T','h','o','u','s','a','n','d','S','e','p',0};
527 static const WCHAR sNativeDigitsW[] = {'s','N','a','t','i','v','e','D','i','g','i','t','s',0};
528 static const WCHAR sNegativeSignW[] = {'s','N','e','g','a','t','i','v','e','S','i','g','n',0};
529 static const WCHAR sPositiveSignW[] = {'s','P','o','s','i','t','i','v','e','S','i','g','n',0};
530 static const WCHAR sShortDateW[] = {'s','S','h','o','r','t','D','a','t','e',0};
531 static const WCHAR sThousandW[] = {'s','T','h','o','u','s','a','n','d',0};
532 static const WCHAR sTimeFormatW[] = {'s','T','i','m','e','F','o','r','m','a','t',0};
533 static const WCHAR sTimeW[] = {'s','T','i','m','e',0};
534 static const WCHAR sYearMonthW[] = {'s','Y','e','a','r','M','o','n','t','h',0};
535 static const WCHAR NumShapeW[] = {'N','u','m','s','h','a','p','e',0};
536
537 switch (lctype)
538 {
539 /* These values are used by SetLocaleInfo and GetLocaleInfo, and
540 * the values are stored in the registry, confirmed under Windows.
541 */
542 case LOCALE_ICALENDARTYPE: return iCalendarTypeW;
543 case LOCALE_ICURRDIGITS: return iCurrDigitsW;
544 case LOCALE_ICURRENCY: return iCurrencyW;
545 case LOCALE_IDIGITS: return iDigitsW;
546 case LOCALE_IFIRSTDAYOFWEEK: return iFirstDayOfWeekW;
547 case LOCALE_IFIRSTWEEKOFYEAR: return iFirstWeekOfYearW;
548 case LOCALE_ILZERO: return iLZeroW;
549 case LOCALE_IMEASURE: return iMeasureW;
550 case LOCALE_INEGCURR: return iNegCurrW;
551 case LOCALE_INEGNUMBER: return iNegNumberW;
552 case LOCALE_IPAPERSIZE: return iPaperSizeW;
553 case LOCALE_ITIME: return iTimeW;
554 case LOCALE_S1159: return s1159W;
555 case LOCALE_S2359: return s2359W;
556 case LOCALE_SCURRENCY: return sCurrencyW;
557 case LOCALE_SDATE: return sDateW;
558 case LOCALE_SDECIMAL: return sDecimalW;
559 case LOCALE_SGROUPING: return sGroupingW;
560 case LOCALE_SLIST: return sListW;
561 case LOCALE_SLONGDATE: return sLongDateW;
562 case LOCALE_SMONDECIMALSEP: return sMonDecimalSepW;
563 case LOCALE_SMONGROUPING: return sMonGroupingW;
564 case LOCALE_SMONTHOUSANDSEP: return sMonThousandSepW;
565 case LOCALE_SNEGATIVESIGN: return sNegativeSignW;
566 case LOCALE_SPOSITIVESIGN: return sPositiveSignW;
567 case LOCALE_SSHORTDATE: return sShortDateW;
568 case LOCALE_STHOUSAND: return sThousandW;
569 case LOCALE_STIME: return sTimeW;
570 case LOCALE_STIMEFORMAT: return sTimeFormatW;
571 case LOCALE_SYEARMONTH: return sYearMonthW;
572
573 /* The following are not listed under MSDN as supported,
574 * but seem to be used and also stored in the registry.
575 */
576 case LOCALE_ICOUNTRY: return iCountryW;
577 case LOCALE_IDATE: return iDateW;
578 case LOCALE_ILDATE: return iLDateW;
579 case LOCALE_ITLZERO: return iTLZeroW;
580 case LOCALE_SCOUNTRY: return sCountryW;
581 case LOCALE_SABBREVLANGNAME: return sLanguageW;
582
583 /* The following are used in XP and later */
584 case LOCALE_IDIGITSUBSTITUTION: return NumShapeW;
585 case LOCALE_SNATIVEDIGITS: return sNativeDigitsW;
586 case LOCALE_ITIMEMARKPOSN: return iTimePrefixW;
587 }
588 return NULL;
589 }
590
591
592 /******************************************************************************
593 * get_registry_locale_info
594 *
595 * Retrieve user-modified locale info from the registry.
596 * Return length, 0 on error, -1 if not found.
597 */
598 static INT get_registry_locale_info( LPCWSTR value, LPWSTR buffer, INT len )
599 {
600 DWORD size;
601 INT ret;
602 HANDLE hkey;
603 NTSTATUS status;
604 UNICODE_STRING nameW;
605 KEY_VALUE_PARTIAL_INFORMATION *info;
606 static const int info_size = FIELD_OFFSET(KEY_VALUE_PARTIAL_INFORMATION, Data);
607
608 if (!(hkey = create_registry_key())) return -1;
609
610 RtlInitUnicodeString( &nameW, value );
611 size = info_size + len * sizeof(WCHAR);
612
613 if (!(info = HeapAlloc( GetProcessHeap(), 0, size )))
614 {
615 NtClose( hkey );
616 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
617 return 0;
618 }
619
620 status = NtQueryValueKey( hkey, &nameW, KeyValuePartialInformation, info, size, &size );
621
622 if (!status)
623 {
624 ret = (size - info_size) / sizeof(WCHAR);
625 /* append terminating null if needed */
626 if (!ret || ((WCHAR *)info->Data)[ret-1])
627 {
628 if (ret < len || !buffer) ret++;
629 else
630 {
631 SetLastError( ERROR_INSUFFICIENT_BUFFER );
632 ret = 0;
633 }
634 }
635 if (ret && buffer)
636 {
637 memcpy( buffer, info->Data, (ret-1) * sizeof(WCHAR) );
638 buffer[ret-1] = 0;
639 }
640 }
641 else if (status == STATUS_BUFFER_OVERFLOW && !buffer)
642 {
643 ret = (size - info_size) / sizeof(WCHAR) + 1;
644 }
645 else if (status == STATUS_OBJECT_NAME_NOT_FOUND)
646 {
647 ret = -1;
648 }
649 else
650 {
651 SetLastError( RtlNtStatusToDosError(status) );
652 ret = 0;
653 }
654 NtClose( hkey );
655 HeapFree( GetProcessHeap(), 0, info );
656 return ret;
657 }
658
659
660 /******************************************************************************
661 * GetLocaleInfoA (KERNEL32.@)
662 *
663 * Get information about an aspect of a locale.
664 *
665 * PARAMS
666 * lcid [I] LCID of the locale
667 * lctype [I] LCTYPE_ flags from "winnls.h"
668 * buffer [O] Destination for the information
669 * len [I] Length of buffer in characters
670 *
671 * RETURNS
672 * Success: The size of the data requested. If buffer is non-NULL, it is filled
673 * with the information.
674 * Failure: 0. Use GetLastError() to determine the cause.
675 *
676 * NOTES
677 * - LOCALE_NEUTRAL is equal to LOCALE_SYSTEM_DEFAULT
678 * - The string returned is NUL terminated, except for LOCALE_FONTSIGNATURE,
679 * which is a bit string.
680 */
681 INT WINAPI GetLocaleInfoA( LCID lcid, LCTYPE lctype, LPSTR buffer, INT len )
682 {
683 WCHAR *bufferW;
684 INT lenW, ret;
685
686 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d)\n", lcid, lctype, buffer, len );
687
688 if (len < 0 || (len && !buffer))
689 {
690 SetLastError( ERROR_INVALID_PARAMETER );
691 return 0;
692 }
693 if (lctype & LOCALE_RETURN_GENITIVE_NAMES )
694 {
695 SetLastError( ERROR_INVALID_FLAGS );
696 return 0;
697 }
698
699 if (!len) buffer = NULL;
700
701 if (!(lenW = GetLocaleInfoW( lcid, lctype, NULL, 0 ))) return 0;
702
703 if (!(bufferW = HeapAlloc( GetProcessHeap(), 0, lenW * sizeof(WCHAR) )))
704 {
705 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
706 return 0;
707 }
708 if ((ret = GetLocaleInfoW( lcid, lctype, bufferW, lenW )))
709 {
710 if ((lctype & LOCALE_RETURN_NUMBER) ||
711 ((lctype & ~LOCALE_LOCALEINFOFLAGSMASK) == LOCALE_FONTSIGNATURE))
712 {
713 /* it's not an ASCII string, just bytes */
714 ret *= sizeof(WCHAR);
715 if (buffer)
716 {
717 if (ret <= len) memcpy( buffer, bufferW, ret );
718 else
719 {
720 SetLastError( ERROR_INSUFFICIENT_BUFFER );
721 ret = 0;
722 }
723 }
724 }
725 else
726 {
727 UINT codepage = CP_ACP;
728 if (!(lctype & LOCALE_USE_CP_ACP)) codepage = get_lcid_codepage( lcid );
729 ret = WideCharToMultiByte( codepage, 0, bufferW, ret, buffer, len, NULL, NULL );
730 }
731 }
732 HeapFree( GetProcessHeap(), 0, bufferW );
733 return ret;
734 }
735
736 static int get_value_base_by_lctype( LCTYPE lctype )
737 {
738 return lctype == LOCALE_ILANGUAGE || lctype == LOCALE_IDEFAULTLANGUAGE ? 16 : 10;
739 }
740
741 /******************************************************************************
742 * GetLocaleInfoW (KERNEL32.@)
743 *
744 * See GetLocaleInfoA.
745 */
746 INT WINAPI GetLocaleInfoW( LCID lcid, LCTYPE lctype, LPWSTR buffer, INT len )
747 {
748 LANGID lang_id;
749 HRSRC hrsrc;
750 HGLOBAL hmem;
751 INT ret;
752 UINT lcflags;
753 const WCHAR *p;
754 unsigned int i;
755
756 if (len < 0 || (len && !buffer))
757 {
758 SetLastError( ERROR_INVALID_PARAMETER );
759 return 0;
760 }
761 if (lctype & LOCALE_RETURN_GENITIVE_NAMES &&
762 !is_genitive_name_supported( lctype ))
763 {
764 SetLastError( ERROR_INVALID_FLAGS );
765 return 0;
766 }
767
768 if (!len) buffer = NULL;
769
770 lcid = convert_default_lcid( lcid, lctype );
771
772 lcflags = lctype & LOCALE_LOCALEINFOFLAGSMASK;
773 lctype &= 0xffff;
774
775 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d)\n", lcid, lctype, buffer, len );
776
777 /* first check for overrides in the registry */
778
779 if (!(lcflags & LOCALE_NOUSEROVERRIDE) &&
780 lcid == convert_default_lcid( LOCALE_USER_DEFAULT, lctype ))
781 {
782 const WCHAR *value = get_locale_value_name(lctype);
783
784 if (value)
785 {
786 if (lcflags & LOCALE_RETURN_NUMBER)
787 {
788 WCHAR tmp[16];
789 ret = get_registry_locale_info( value, tmp, sizeof(tmp)/sizeof(WCHAR) );
790 if (ret > 0)
791 {
792 WCHAR *end;
793 UINT number = strtolW( tmp, &end, get_value_base_by_lctype( lctype ) );
794 if (*end) /* invalid number */
795 {
796 SetLastError( ERROR_INVALID_FLAGS );
797 return 0;
798 }
799 ret = sizeof(UINT)/sizeof(WCHAR);
800 if (!buffer) return ret;
801 if (ret > len)
802 {
803 SetLastError( ERROR_INSUFFICIENT_BUFFER );
804 return 0;
805 }
806 memcpy( buffer, &number, sizeof(number) );
807 }
808 }
809 else ret = get_registry_locale_info( value, buffer, len );
810
811 if (ret != -1) return ret;
812 }
813 }
814
815 /* now load it from kernel resources */
816
817 lang_id = LANGIDFROMLCID( lcid );
818
819 /* replace SUBLANG_NEUTRAL by SUBLANG_DEFAULT */
820 if (SUBLANGID(lang_id) == SUBLANG_NEUTRAL)
821 lang_id = MAKELANGID(PRIMARYLANGID(lang_id), SUBLANG_DEFAULT);
822
823 if (!(hrsrc = FindResourceExW( kernel32_handle, (LPWSTR)RT_STRING,
824 ULongToPtr((lctype >> 4) + 1), lang_id )))
825 {
826 SetLastError( ERROR_INVALID_FLAGS ); /* no such lctype */
827 return 0;
828 }
829 if (!(hmem = LoadResource( kernel32_handle, hrsrc )))
830 return 0;
831
832 p = LockResource( hmem );
833 for (i = 0; i < (lctype & 0x0f); i++) p += *p + 1;
834
835 if (lcflags & LOCALE_RETURN_NUMBER) ret = sizeof(UINT)/sizeof(WCHAR);
836 else if (is_genitive_name_supported( lctype ) && *p)
837 {
838 /* genitive form's stored after a null separator from a nominative */
839 for (i = 1; i <= *p; i++) if (!p[i]) break;
840
841 if (i <= *p && (lcflags & LOCALE_RETURN_GENITIVE_NAMES))
842 {
843 ret = *p - i + 1;
844 p += i;
845 }
846 else ret = i;
847 }
848 else
849 ret = (lctype == LOCALE_FONTSIGNATURE) ? *p : *p + 1;
850
851 if (!buffer) return ret;
852
853 if (ret > len)
854 {
855 SetLastError( ERROR_INSUFFICIENT_BUFFER );
856 return 0;
857 }
858
859 if (lcflags & LOCALE_RETURN_NUMBER)
860 {
861 UINT number;
862 WCHAR *end, *tmp = HeapAlloc( GetProcessHeap(), 0, (*p + 1) * sizeof(WCHAR) );
863 if (!tmp) return 0;
864 memcpy( tmp, p + 1, *p * sizeof(WCHAR) );
865 tmp[*p] = 0;
866 number = strtolW( tmp, &end, get_value_base_by_lctype( lctype ) );
867 if (!*end)
868 memcpy( buffer, &number, sizeof(number) );
869 else /* invalid number */
870 {
871 SetLastError( ERROR_INVALID_FLAGS );
872 ret = 0;
873 }
874 HeapFree( GetProcessHeap(), 0, tmp );
875
876 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d) returning number %d\n",
877 lcid, lctype, buffer, len, number );
878 }
879 else
880 {
881 memcpy( buffer, p + 1, ret * sizeof(WCHAR) );
882 if (lctype != LOCALE_FONTSIGNATURE) buffer[ret-1] = 0;
883
884 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d) returning %d %s\n",
885 lcid, lctype, buffer, len, ret, debugstr_w(buffer) );
886 }
887 return ret;
888 }
889
890
891 /******************************************************************************
892 * SetLocaleInfoA [KERNEL32.@]
893 *
894 * Set information about an aspect of a locale.
895 *
896 * PARAMS
897 * lcid [I] LCID of the locale
898 * lctype [I] LCTYPE_ flags from "winnls.h"
899 * data [I] Information to set
900 *
901 * RETURNS
902 * Success: TRUE. The information given will be returned by GetLocaleInfoA()
903 * whenever it is called without LOCALE_NOUSEROVERRIDE.
904 * Failure: FALSE. Use GetLastError() to determine the cause.
905 *
906 * NOTES
907 * - Values are only be set for the current user locale; the system locale
908 * settings cannot be changed.
909 * - Any settings changed by this call are lost when the locale is changed by
910 * the control panel (in Wine, this happens every time you change LANG).
911 * - The native implementation of this function does not check that lcid matches
912 * the current user locale, and simply sets the new values. Wine warns you in
913 * this case, but behaves the same.
914 */
915 BOOL WINAPI SetLocaleInfoA(LCID lcid, LCTYPE lctype, LPCSTR data)
916 {
917 UINT codepage = CP_ACP;
918 WCHAR *strW;
919 DWORD len;
920 BOOL ret;
921
922 if (!(lctype & LOCALE_USE_CP_ACP)) codepage = get_lcid_codepage( lcid );
923
924 if (!data)
925 {
926 SetLastError( ERROR_INVALID_PARAMETER );
927 return FALSE;
928 }
929 len = MultiByteToWideChar( codepage, 0, data, -1, NULL, 0 );
930 if (!(strW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) )))
931 {
932 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
933 return FALSE;
934 }
935 MultiByteToWideChar( codepage, 0, data, -1, strW, len );
936 ret = SetLocaleInfoW( lcid, lctype, strW );
937 HeapFree( GetProcessHeap(), 0, strW );
938 return ret;
939 }
940
941
942 /******************************************************************************
943 * SetLocaleInfoW (KERNEL32.@)
944 *
945 * See SetLocaleInfoA.
946 */
947 BOOL WINAPI SetLocaleInfoW( LCID lcid, LCTYPE lctype, LPCWSTR data )
948 {
949 const WCHAR *value;
950 static const WCHAR intlW[] = {'i','n','t','l',0 };
951 UNICODE_STRING valueW;
952 NTSTATUS status;
953 HANDLE hkey;
954
955 lctype &= 0xffff;
956 value = get_locale_value_name( lctype );
957
958 if (!data || !value)
959 {
960 SetLastError( ERROR_INVALID_PARAMETER );
961 return FALSE;
962 }
963
964 if (lctype == LOCALE_IDATE || lctype == LOCALE_ILDATE)
965 {
966 SetLastError( ERROR_INVALID_FLAGS );
967 return FALSE;
968 }
969
970 TRACE("setting %x (%s) to %s\n", lctype, debugstr_w(value), debugstr_w(data) );
971
972 /* FIXME: should check that data to set is sane */
973
974 /* FIXME: profile functions should map to registry */
975 WriteProfileStringW( intlW, value, data );
976
977 if (!(hkey = create_registry_key())) return FALSE;
978 RtlInitUnicodeString( &valueW, value );
979 status = NtSetValueKey( hkey, &valueW, 0, REG_SZ, (PVOID)data, (strlenW(data)+1)*sizeof(WCHAR) );
980
981 if (lctype == LOCALE_SSHORTDATE || lctype == LOCALE_SLONGDATE)
982 {
983 /* Set I-value from S value */
984 WCHAR *lpD, *lpM, *lpY;
985 WCHAR szBuff[2];
986
987 lpD = strrchrW(data, 'd');
988 lpM = strrchrW(data, 'M');
989 lpY = strrchrW(data, 'y');
990
991 if (lpD <= lpM)
992 {
993 szBuff[0] = '1'; /* D-M-Y */
994 }
995 else
996 {
997 if (lpY <= lpM)
998 szBuff[0] = '2'; /* Y-M-D */
999 else
1000 szBuff[0] = '0'; /* M-D-Y */
1001 }
1002
1003 szBuff[1] = '\0';
1004
1005 if (lctype == LOCALE_SSHORTDATE)
1006 lctype = LOCALE_IDATE;
1007 else
1008 lctype = LOCALE_ILDATE;
1009
1010 value = get_locale_value_name( lctype );
1011
1012 WriteProfileStringW( intlW, value, szBuff );
1013
1014 RtlInitUnicodeString( &valueW, value );
1015 status = NtSetValueKey( hkey, &valueW, 0, REG_SZ, szBuff, sizeof(szBuff) );
1016 }
1017
1018 NtClose( hkey );
1019
1020 if (status) SetLastError( RtlNtStatusToDosError(status) );
1021 return !status;
1022 }
1023
1024 /***********************************************************************
1025 * GetThreadLocale (KERNEL32.@)
1026 *
1027 * Get the current threads locale.
1028 *
1029 * PARAMS
1030 * None.
1031 *
1032 * RETURNS
1033 * The LCID currently associated with the calling thread.
1034 */
1035 LCID WINAPI GetThreadLocale(void)
1036 {
1037 LCID ret = NtCurrentTeb()->CurrentLocale;
1038 if (!ret) NtCurrentTeb()->CurrentLocale = ret = GetUserDefaultLCID();
1039 return ret;
1040 }
1041
1042 /**********************************************************************
1043 * SetThreadLocale (KERNEL32.@)
1044 *
1045 * Set the current threads locale.
1046 *
1047 * PARAMS
1048 * lcid [I] LCID of the locale to set
1049 *
1050 * RETURNS
1051 * Success: TRUE. The threads locale is set to lcid.
1052 * Failure: FALSE. Use GetLastError() to determine the cause.
1053 */
1054 BOOL WINAPI SetThreadLocale( LCID lcid )
1055 {
1056 TRACE("(0x%04X)\n", lcid);
1057
1058 lcid = ConvertDefaultLocale(lcid);
1059
1060 if (lcid != GetThreadLocale())
1061 {
1062 if (!IsValidLocale(lcid, LCID_SUPPORTED))
1063 {
1064 SetLastError(ERROR_INVALID_PARAMETER);
1065 return FALSE;
1066 }
1067
1068 NtCurrentTeb()->CurrentLocale = lcid;
1069 }
1070 return TRUE;
1071 }
1072
1073 /******************************************************************************
1074 * ConvertDefaultLocale (KERNEL32.@)
1075 *
1076 * Convert a default locale identifier into a real identifier.
1077 *
1078 * PARAMS
1079 * lcid [I] LCID identifier of the locale to convert
1080 *
1081 * RETURNS
1082 * lcid unchanged, if not a default locale or its sublanguage is
1083 * not SUBLANG_NEUTRAL.
1084 * GetSystemDefaultLCID(), if lcid == LOCALE_SYSTEM_DEFAULT.
1085 * GetUserDefaultLCID(), if lcid == LOCALE_USER_DEFAULT or LOCALE_NEUTRAL.
1086 * Otherwise, lcid with sublanguage changed to SUBLANG_DEFAULT.
1087 */
1088 LCID WINAPI ConvertDefaultLocale( LCID lcid )
1089 {
1090 LANGID langid;
1091
1092 switch (lcid)
1093 {
1094 case LOCALE_SYSTEM_DEFAULT:
1095 lcid = GetSystemDefaultLCID();
1096 break;
1097 case LOCALE_USER_DEFAULT:
1098 case LOCALE_NEUTRAL:
1099 lcid = GetUserDefaultLCID();
1100 break;
1101 default:
1102 /* Replace SUBLANG_NEUTRAL with SUBLANG_DEFAULT */
1103 langid = LANGIDFROMLCID(lcid);
1104 if (SUBLANGID(langid) == SUBLANG_NEUTRAL)
1105 {
1106 langid = MAKELANGID(PRIMARYLANGID(langid), SUBLANG_DEFAULT);
1107 lcid = MAKELCID(langid, SORTIDFROMLCID(lcid));
1108 }
1109 }
1110 return lcid;
1111 }
1112
1113
1114 /******************************************************************************
1115 * IsValidLocale (KERNEL32.@)
1116 *
1117 * Determine if a locale is valid.
1118 *
1119 * PARAMS
1120 * lcid [I] LCID of the locale to check
1121 * flags [I] LCID_SUPPORTED = Valid, LCID_INSTALLED = Valid and installed on the system
1122 *
1123 * RETURNS
1124 * TRUE, if lcid is valid,
1125 * FALSE, otherwise.
1126 *
1127 * NOTES
1128 * Wine does not currently make the distinction between supported and installed. All
1129 * languages supported are installed by default.
1130 */
1131 BOOL WINAPI IsValidLocale( LCID lcid, DWORD flags )
1132 {
1133 /* check if language is registered in the kernel32 resources */
1134 return FindResourceExW( kernel32_handle, (LPWSTR)RT_STRING,
1135 (LPCWSTR)LOCALE_ILANGUAGE, LANGIDFROMLCID(lcid)) != 0;
1136 }
1137
1138
1139 static BOOL CALLBACK enum_lang_proc_a( HMODULE hModule, LPCSTR type,
1140 LPCSTR name, WORD LangID, LONG_PTR lParam )
1141 {
1142 LOCALE_ENUMPROCA lpfnLocaleEnum = (LOCALE_ENUMPROCA)lParam;
1143 char buf[20];
1144
1145 sprintf(buf, "%08x", (UINT)LangID);
1146 return lpfnLocaleEnum( buf );
1147 }
1148
1149 static BOOL CALLBACK enum_lang_proc_w( HMODULE hModule, LPCWSTR type,
1150 LPCWSTR name, WORD LangID, LONG_PTR lParam )
1151 {
1152 static const WCHAR formatW[] = {'%','0','8','x',0};
1153 LOCALE_ENUMPROCW lpfnLocaleEnum = (LOCALE_ENUMPROCW)lParam;
1154 WCHAR buf[20];
1155 sprintfW( buf, formatW, (UINT)LangID );
1156 return lpfnLocaleEnum( buf );
1157 }
1158
1159 /******************************************************************************
1160 * EnumSystemLocalesA (KERNEL32.@)
1161 *
1162 * Call a users function for each locale available on the system.
1163 *
1164 * PARAMS
1165 * lpfnLocaleEnum [I] Callback function to call for each locale
1166 * dwFlags [I] LOCALE_SUPPORTED=All supported, LOCALE_INSTALLED=Installed only
1167 *
1168 * RETURNS
1169 * Success: TRUE.
1170 * Failure: FALSE. Use GetLastError() to determine the cause.
1171 */
1172 BOOL WINAPI EnumSystemLocalesA( LOCALE_ENUMPROCA lpfnLocaleEnum, DWORD dwFlags )
1173 {
1174 TRACE("(%p,%08x)\n", lpfnLocaleEnum, dwFlags);
1175 EnumResourceLanguagesA( kernel32_handle, (LPSTR)RT_STRING,
1176 (LPCSTR)LOCALE_ILANGUAGE, enum_lang_proc_a,
1177 (LONG_PTR)lpfnLocaleEnum);
1178 return TRUE;
1179 }
1180
1181
1182 /******************************************************************************
1183 * EnumSystemLocalesW (KERNEL32.@)
1184 *
1185 * See EnumSystemLocalesA.
1186 */
1187 BOOL WINAPI EnumSystemLocalesW( LOCALE_ENUMPROCW lpfnLocaleEnum, DWORD dwFlags )
1188 {
1189 TRACE("(%p,%08x)\n", lpfnLocaleEnum, dwFlags);
1190 EnumResourceLanguagesW( kernel32_handle, (LPWSTR)RT_STRING,
1191 (LPCWSTR)LOCALE_ILANGUAGE, enum_lang_proc_w,
1192 (LONG_PTR)lpfnLocaleEnum);
1193 return TRUE;
1194 }
1195
1196 /***********************************************************************
1197 * VerLanguageNameA (KERNEL32.@)
1198 *
1199 * Get the name of a language.
1200 *
1201 * PARAMS
1202 * wLang [I] LANGID of the language
1203 * szLang [O] Destination for the language name
1204 *
1205 * RETURNS
1206 * Success: The size of the language name. If szLang is non-NULL, it is filled
1207 * with the name.
1208 * Failure: 0. Use GetLastError() to determine the cause.
1209 *
1210 */
1211 DWORD WINAPI VerLanguageNameA( DWORD wLang, LPSTR szLang, DWORD nSize )
1212 {
1213 return GetLocaleInfoA( MAKELCID(wLang, SORT_DEFAULT), LOCALE_SENGLANGUAGE, szLang, nSize );
1214 }
1215
1216
1217 /***********************************************************************
1218 * VerLanguageNameW (KERNEL32.@)
1219 *
1220 * See VerLanguageNameA.
1221 */
1222 DWORD WINAPI VerLanguageNameW( DWORD wLang, LPWSTR szLang, DWORD nSize )
1223 {
1224 return GetLocaleInfoW( MAKELCID(wLang, SORT_DEFAULT), LOCALE_SENGLANGUAGE, szLang, nSize );
1225 }
1226
1227 /******************************************************************************
1228 * GetStringTypeW (KERNEL32.@)
1229 *
1230 * See GetStringTypeA.
1231 */
1232 BOOL WINAPI GetStringTypeW( DWORD type, LPCWSTR src, INT count, LPWORD chartype )
1233 {
1234 static const unsigned char type2_map[16] =
1235 {
1236 C2_NOTAPPLICABLE, /* unassigned */
1237 C2_LEFTTORIGHT, /* L */
1238 C2_RIGHTTOLEFT, /* R */
1239 C2_EUROPENUMBER, /* EN */
1240 C2_EUROPESEPARATOR, /* ES */
1241 C2_EUROPETERMINATOR, /* ET */
1242 C2_ARABICNUMBER, /* AN */
1243 C2_COMMONSEPARATOR, /* CS */
1244 C2_BLOCKSEPARATOR, /* B */
1245 C2_SEGMENTSEPARATOR, /* S */
1246 C2_WHITESPACE, /* WS */
1247 C2_OTHERNEUTRAL, /* ON */
1248 C2_RIGHTTOLEFT, /* AL */
1249 C2_NOTAPPLICABLE, /* NSM */
1250 C2_NOTAPPLICABLE, /* BN */
1251 C2_OTHERNEUTRAL /* LRE, LRO, RLE, RLO, PDF */
1252 };
1253
1254 if (count == -1) count = strlenW(src) + 1;
1255 switch(type)
1256 {
1257 case CT_CTYPE1:
1258 while (count--) *chartype++ = get_char_typeW( *src++ ) & 0xfff;
1259 break;
1260 case CT_CTYPE2:
1261 while (count--) *chartype++ = type2_map[get_char_typeW( *src++ ) >> 12];
1262 break;
1263 case CT_CTYPE3:
1264 {
1265 WARN("CT_CTYPE3: semi-stub.\n");
1266 while (count--)
1267 {
1268 int c = *src;
1269 WORD type1, type3 = 0; /* C3_NOTAPPLICABLE */
1270
1271 type1 = get_char_typeW( *src++ ) & 0xfff;
1272 /* try to construct type3 from type1 */
1273 if(type1 & C1_SPACE) type3 |= C3_SYMBOL;
1274 if(type1 & C1_ALPHA) type3 |= C3_ALPHA;
1275 if ((c>=0x30A0)&&(c<=0x30FF)) type3 |= C3_KATAKANA;
1276 if ((c>=0x3040)&&(c<=0x309F)) type3 |= C3_HIRAGANA;
1277 if ((c>=0x4E00)&&(c<=0x9FAF)) type3 |= C3_IDEOGRAPH;
1278 if ((c>=0x0600)&&(c<=0x06FF)) type3 |= C3_KASHIDA;
1279 if ((c>=0x3000)&&(c<=0x303F)) type3 |= C3_SYMBOL;
1280
1281 if ((c>=0xFF00)&&(c<=0xFF60)) type3 |= C3_FULLWIDTH;
1282 if ((c>=0xFF00)&&(c<=0xFF20)) type3 |= C3_SYMBOL;
1283 if ((c>=0xFF3B)&&(c<=0xFF40)) type3 |= C3_SYMBOL;
1284 if ((c>=0xFF5B)&&(c<=0xFF60)) type3 |= C3_SYMBOL;
1285 if ((c>=0xFF21)&&(c<=0xFF3A)) type3 |= C3_ALPHA;
1286 if ((c>=0xFF41)&&(c<=0xFF5A)) type3 |= C3_ALPHA;
1287 if ((c>=0xFFE0)&&(c<=0xFFE6)) type3 |= C3_FULLWIDTH;
1288 if ((c>=0xFFE0)&&(c<=0xFFE6)) type3 |= C3_SYMBOL;
1289
1290 if ((c>=0xFF61)&&(c<=0xFFDC)) type3 |= C3_HALFWIDTH;
1291 if ((c>=0xFF61)&&(c<=0xFF64)) type3 |= C3_SYMBOL;
1292 if ((c>=0xFF65)&&(c<=0xFF9F)) type3 |= C3_KATAKANA;
1293 if ((c>=0xFF65)&&(c<=0xFF9F)) type3 |= C3_ALPHA;
1294 if ((c>=0xFFE8)&&(c<=0xFFEE)) type3 |= C3_HALFWIDTH;
1295 if ((c>=0xFFE8)&&(c<=0xFFEE)) type3 |= C3_SYMBOL;
1296 *chartype++ = type3;
1297 }
1298 break;
1299 }
1300 default:
1301 SetLastError( ERROR_INVALID_PARAMETER );
1302 return FALSE;
1303 }
1304 return TRUE;
1305 }
1306
1307
1308 /******************************************************************************
1309 * GetStringTypeExW (KERNEL32.@)
1310 *
1311 * See GetStringTypeExA.
1312 */
1313 BOOL WINAPI GetStringTypeExW( LCID locale, DWORD type, LPCWSTR src, INT count, LPWORD chartype )
1314 {
1315 /* locale is ignored for Unicode */
1316 return GetStringTypeW( type, src, count, chartype );
1317 }
1318
1319
1320 /******************************************************************************
1321 * GetStringTypeA (KERNEL32.@)
1322 *
1323 * Get characteristics of the characters making up a string.
1324 *
1325 * PARAMS
1326 * locale [I] Locale Id for the string
1327 * type [I] CT_CTYPE1 = classification, CT_CTYPE2 = directionality, CT_CTYPE3 = typographic info
1328 * src [I] String to analyse
1329 * count [I] Length of src in chars, or -1 if src is NUL terminated
1330 * chartype [O] Destination for the calculated characteristics
1331 *
1332 * RETURNS
1333 * Success: TRUE. chartype is filled with the requested characteristics of each char
1334 * in src.
1335 * Failure: FALSE. Use GetLastError() to determine the cause.
1336 */
1337 BOOL WINAPI GetStringTypeA( LCID locale, DWORD type, LPCSTR src, INT count, LPWORD chartype )
1338 {
1339 UINT cp;
1340 INT countW;
1341 LPWSTR srcW;
1342 BOOL ret = FALSE;
1343
1344 if(count == -1) count = strlen(src) + 1;
1345
1346 if (!(cp = get_lcid_codepage( locale )))
1347 {
1348 FIXME("For locale %04x using current ANSI code page\n", locale);
1349 cp = GetACP();
1350 }
1351
1352 countW = MultiByteToWideChar(cp, 0, src, count, NULL, 0);
1353 if((srcW = HeapAlloc(GetProcessHeap(), 0, countW * sizeof(WCHAR))))
1354 {
1355 MultiByteToWideChar(cp, 0, src, count, srcW, countW);
1356 /*
1357 * NOTE: the target buffer has 1 word for each CHARACTER in the source
1358 * string, with multibyte characters there maybe be more bytes in count
1359 * than character space in the buffer!
1360 */
1361 ret = GetStringTypeW(type, srcW, countW, chartype);
1362 HeapFree(GetProcessHeap(), 0, srcW);
1363 }
1364 return ret;
1365 }
1366
1367 /******************************************************************************
1368 * GetStringTypeExA (KERNEL32.@)
1369 *
1370 * Get characteristics of the characters making up a string.
1371 *
1372 * PARAMS
1373 * locale [I] Locale Id for the string
1374 * type [I] CT_CTYPE1 = classification, CT_CTYPE2 = directionality, CT_CTYPE3 = typographic info
1375 * src [I] String to analyse
1376 * count [I] Length of src in chars, or -1 if src is NUL terminated
1377 * chartype [O] Destination for the calculated characteristics
1378 *
1379 * RETURNS
1380 * Success: TRUE. chartype is filled with the requested characteristics of each char
1381 * in src.
1382 * Failure: FALSE. Use GetLastError() to determine the cause.
1383 */
1384 BOOL WINAPI GetStringTypeExA( LCID locale, DWORD type, LPCSTR src, INT count, LPWORD chartype )
1385 {
1386 return GetStringTypeA(locale, type, src, count, chartype);
1387 }
1388
1389
1390 /*************************************************************************
1391 * LCMapStringW (KERNEL32.@)
1392 *
1393 * See LCMapStringA.
1394 */
1395 INT WINAPI LCMapStringW(LCID lcid, DWORD flags, LPCWSTR src, INT srclen,
1396 LPWSTR dst, INT dstlen)
1397 {
1398 LPWSTR dst_ptr;
1399
1400 if (!src || !srclen || dstlen < 0)
1401 {
1402 SetLastError(ERROR_INVALID_PARAMETER);
1403 return 0;
1404 }
1405
1406 /* mutually exclusive flags */
1407 if ((flags & (LCMAP_LOWERCASE | LCMAP_UPPERCASE)) == (LCMAP_LOWERCASE | LCMAP_UPPERCASE) ||
1408 (flags & (LCMAP_HIRAGANA | LCMAP_KATAKANA)) == (LCMAP_HIRAGANA | LCMAP_KATAKANA) ||
1409 (flags & (LCMAP_HALFWIDTH | LCMAP_FULLWIDTH)) == (LCMAP_HALFWIDTH | LCMAP_FULLWIDTH) ||
1410 (flags & (LCMAP_TRADITIONAL_CHINESE | LCMAP_SIMPLIFIED_CHINESE)) == (LCMAP_TRADITIONAL_CHINESE | LCMAP_SIMPLIFIED_CHINESE))
1411 {
1412 SetLastError(ERROR_INVALID_FLAGS);
1413 return 0;
1414 }
1415
1416 if (!dstlen) dst = NULL;
1417
1418 lcid = ConvertDefaultLocale(lcid);
1419
1420 if (flags & LCMAP_SORTKEY)
1421 {
1422 INT ret;
1423 if (src == dst)
1424 {
1425 SetLastError(ERROR_INVALID_FLAGS);
1426 return 0;
1427 }
1428
1429 if (srclen < 0) srclen = strlenW(src);
1430
1431 TRACE("(0x%04x,0x%08x,%s,%d,%p,%d)\n",
1432 lcid, flags, debugstr_wn(src, srclen), srclen, dst, dstlen);
1433
1434 ret = wine_get_sortkey(flags, src, srclen, (char *)dst, dstlen);
1435 if (ret == 0)
1436 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1437 else
1438 ret++;
1439 return ret;
1440 }
1441
1442 /* SORT_STRINGSORT must be used exclusively with LCMAP_SORTKEY */
1443 if (flags & SORT_STRINGSORT)
1444 {
1445 SetLastError(ERROR_INVALID_FLAGS);
1446 return 0;
1447 }
1448
1449 if (srclen < 0) srclen = strlenW(src) + 1;
1450
1451 TRACE("(0x%04x,0x%08x,%s,%d,%p,%d)\n",
1452 lcid, flags, debugstr_wn(src, srclen), srclen, dst, dstlen);
1453
1454 if (!dst) /* return required string length */
1455 {
1456 INT len;
1457
1458 for (len = 0; srclen; src++, srclen--)
1459 {
1460 WCHAR wch = *src;
1461 /* tests show that win2k just ignores NORM_IGNORENONSPACE,
1462 * and skips white space and punctuation characters for
1463 * NORM_IGNORESYMBOLS.
1464 */
1465 if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
1466 continue;
1467 len++;
1468 }
1469 return len;
1470 }
1471
1472 if (flags & LCMAP_UPPERCASE)
1473 {
1474 for (dst_ptr = dst; srclen && dstlen; src++, srclen--)
1475 {
1476 WCHAR wch = *src;
1477 if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
1478 continue;
1479 *dst_ptr++ = toupperW(wch);
1480 dstlen--;
1481 }
1482 }
1483 else if (flags & LCMAP_LOWERCASE)
1484 {
1485 for (dst_ptr = dst; srclen && dstlen; src++, srclen--)
1486 {
1487 WCHAR wch = *src;
1488 if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
1489 continue;
1490 *dst_ptr++ = tolowerW(wch);
1491 dstlen--;
1492 }
1493 }
1494 else
1495 {
1496 if (src == dst)
1497 {
1498 SetLastError(ERROR_INVALID_FLAGS);
1499 return 0;
1500 }
1501 for (dst_ptr = dst; srclen && dstlen; src++, srclen--)
1502 {
1503 WCHAR wch = *src;
1504 if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
1505 continue;
1506 *dst_ptr++ = wch;
1507 dstlen--;
1508 }
1509 }
1510
1511 if (srclen)
1512 {
1513 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1514 return 0;
1515 }
1516
1517 return dst_ptr - dst;
1518 }
1519
1520 /*************************************************************************
1521 * LCMapStringA (KERNEL32.@)
1522 *
1523 * Map characters in a locale sensitive string.
1524 *
1525 * PARAMS
1526 * lcid [I] LCID for the conversion.
1527 * flags [I] Flags controlling the mapping (LCMAP_ constants from "winnls.h").
1528 * src [I] String to map
1529 * srclen [I] Length of src in chars, or -1 if src is NUL terminated
1530 * dst [O] Destination for mapped string
1531 * dstlen [I] Length of dst in characters
1532 *
1533 * RETURNS
1534 * Success: The length of the mapped string in dst, including the NUL terminator.
1535 * Failure: 0. Use GetLastError() to determine the cause.
1536 */
1537 INT WINAPI LCMapStringA(LCID lcid, DWORD flags, LPCSTR src, INT srclen,
1538 LPSTR dst, INT dstlen)
1539 {
1540 WCHAR *bufW = NtCurrentTeb()->StaticUnicodeBuffer;
1541 LPWSTR srcW, dstW;
1542 INT ret = 0, srclenW, dstlenW;
1543 UINT locale_cp = CP_ACP;
1544
1545 if (!src || !srclen || dstlen < 0)
1546 {
1547 SetLastError(ERROR_INVALID_PARAMETER);
1548 return 0;
1549 }
1550
1551 if (!(flags & LOCALE_USE_CP_ACP)) locale_cp = get_lcid_codepage( lcid );
1552
1553 srclenW = MultiByteToWideChar(locale_cp, 0, src, srclen, bufW, 260);
1554 if (srclenW)
1555 srcW = bufW;
1556 else
1557 {
1558 srclenW = MultiByteToWideChar(locale_cp, 0, src, srclen, NULL, 0);
1559 srcW = HeapAlloc(GetProcessHeap(), 0, srclenW * sizeof(WCHAR));
1560 if (!srcW)
1561 {
1562 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1563 return 0;
1564 }
1565 MultiByteToWideChar(locale_cp, 0, src, srclen, srcW, srclenW);
1566 }
1567
1568 if (flags & LCMAP_SORTKEY)
1569 {
1570 if (src == dst)
1571 {
1572 SetLastError(ERROR_INVALID_FLAGS);
1573 goto map_string_exit;
1574 }
1575 ret = wine_get_sortkey(flags, srcW, srclenW, dst, dstlen);
1576 if (ret == 0)
1577 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1578 else
1579 ret++;
1580 goto map_string_exit;
1581 }
1582
1583 if (flags & SORT_STRINGSORT)
1584 {
1585 SetLastError(ERROR_INVALID_FLAGS);
1586 goto map_string_exit;
1587 }
1588
1589 dstlenW = LCMapStringW(lcid, flags, srcW, srclenW, NULL, 0);
1590 if (!dstlenW)
1591 goto map_string_exit;
1592
1593 dstW = HeapAlloc(GetProcessHeap(), 0, dstlenW * sizeof(WCHAR));
1594 if (!dstW)
1595 {
1596 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1597 goto map_string_exit;
1598 }
1599
1600 LCMapStringW(lcid, flags, srcW, srclenW, dstW, dstlenW);
1601 ret = WideCharToMultiByte(locale_cp, 0, dstW, dstlenW, dst, dstlen, NULL, NULL);
1602 HeapFree(GetProcessHeap(), 0, dstW);
1603
1604 map_string_exit:
1605 if (srcW != bufW) HeapFree(GetProcessHeap(), 0, srcW);
1606 return ret;
1607 }
1608
1609 /*************************************************************************
1610 * FoldStringA (KERNEL32.@)
1611 *
1612 * Map characters in a string.
1613 *
1614 * PARAMS
1615 * dwFlags [I] Flags controlling chars to map (MAP_ constants from "winnls.h")
1616 * src [I] String to map
1617 * srclen [I] Length of src, or -1 if src is NUL terminated
1618 * dst [O] Destination for mapped string
1619 * dstlen [I] Length of dst, or 0 to find the required length for the mapped string
1620 *
1621 * RETURNS
1622 * Success: The length of the string written to dst, including the terminating NUL. If
1623 * dstlen is 0, the value returned is the same, but nothing is written to dst,
1624 * and dst may be NULL.
1625 * Failure: 0. Use GetLastError() to determine the cause.
1626 */
1627 INT WINAPI FoldStringA(DWORD dwFlags, LPCSTR src, INT srclen,
1628 LPSTR dst, INT dstlen)
1629 {
1630 INT ret = 0, srclenW = 0;
1631 WCHAR *srcW = NULL, *dstW = NULL;
1632
1633 if (!src || !srclen || dstlen < 0 || (dstlen && !dst) || src == dst)
1634 {
1635 SetLastError(ERROR_INVALID_PARAMETER);
1636 return 0;
1637 }
1638
1639 srclenW = MultiByteToWideChar(CP_ACP, dwFlags & MAP_COMPOSITE ? MB_COMPOSITE : 0,
1640 src, srclen, NULL, 0);
1641 srcW = HeapAlloc(GetProcessHeap(), 0, srclenW * sizeof(WCHAR));
1642
1643 if (!srcW)
1644 {
1645 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1646 goto FoldStringA_exit;
1647 }
1648
1649 MultiByteToWideChar(CP_ACP, dwFlags & MAP_COMPOSITE ? MB_COMPOSITE : 0,
1650 src, srclen, srcW, srclenW);
1651
1652 dwFlags = (dwFlags & ~MAP_PRECOMPOSED) | MAP_FOLDCZONE;
1653
1654 ret = FoldStringW(dwFlags, srcW, srclenW, NULL, 0);
1655 if (ret && dstlen)
1656 {
1657 dstW = HeapAlloc(GetProcessHeap(), 0, ret * sizeof(WCHAR));
1658
1659 if (!dstW)
1660 {
1661 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1662 goto FoldStringA_exit;
1663 }
1664
1665 ret = FoldStringW(dwFlags, srcW, srclenW, dstW, ret);
1666 if (!WideCharToMultiByte(CP_ACP, 0, dstW, ret, dst, dstlen, NULL, NULL))
1667 {
1668 ret = 0;
1669 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1670 }
1671 }
1672
1673 HeapFree(GetProcessHeap(), 0, dstW);
1674
1675 FoldStringA_exit:
1676 HeapFree(GetProcessHeap(), 0, srcW);
1677 return ret;
1678 }
1679
1680 /*************************************************************************
1681 * FoldStringW (KERNEL32.@)
1682 *
1683 * See FoldStringA.
1684 */
1685 INT WINAPI FoldStringW(DWORD dwFlags, LPCWSTR src, INT srclen,
1686 LPWSTR dst, INT dstlen)
1687 {
1688 int ret;
1689
1690 switch (dwFlags & (MAP_COMPOSITE|MAP_PRECOMPOSED|MAP_EXPAND_LIGATURES))
1691 {
1692 case 0:
1693 if (dwFlags)
1694 break;
1695 /* Fall through for dwFlags == 0 */
1696 case MAP_PRECOMPOSED|MAP_COMPOSITE:
1697 case MAP_PRECOMPOSED|MAP_EXPAND_LIGATURES:
1698 case MAP_COMPOSITE|MAP_EXPAND_LIGATURES:
1699 SetLastError(ERROR_INVALID_FLAGS);
1700 return 0;
1701 }
1702
1703 if (!src || !srclen || dstlen < 0 || (dstlen && !dst) || src == dst)
1704 {
1705 SetLastError(ERROR_INVALID_PARAMETER);
1706 return 0;
1707 }
1708
1709 ret = wine_fold_string(dwFlags, src, srclen, dst, dstlen);
1710 if (!ret)
1711 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1712 return ret;
1713 }
1714
1715 /******************************************************************************
1716 * CompareStringW (KERNEL32.@)
1717 *
1718 * See CompareStringA.
1719 */
1720 INT WINAPI CompareStringW(LCID lcid, DWORD style,
1721 LPCWSTR str1, INT len1, LPCWSTR str2, INT len2)
1722 {
1723 INT ret;
1724
1725 if (!str1 || !str2)
1726 {
1727 SetLastError(ERROR_INVALID_PARAMETER);
1728 return 0;
1729 }
1730
1731 if( style & ~(NORM_IGNORECASE|NORM_IGNORENONSPACE|NORM_IGNORESYMBOLS|
1732 SORT_STRINGSORT|NORM_IGNOREKANATYPE|NORM_IGNOREWIDTH|LOCALE_USE_CP_ACP|0x10000000) )
1733 {
1734 SetLastError(ERROR_INVALID_FLAGS);
1735 return 0;
1736 }
1737
1738 /* this style is related to diacritics in Arabic, Japanese, and Hebrew */
1739 if (style & 0x10000000)
1740 WARN("Ignoring unknown style 0x10000000\n");
1741
1742 if (len1 < 0) len1 = strlenW(str1);
1743 if (len2 < 0) len2 = strlenW(str2);
1744
1745 ret = wine_compare_string(style, str1, len1, str2, len2);
1746
1747 if (ret) /* need to translate result */
1748 return (ret < 0) ? CSTR_LESS_THAN : CSTR_GREATER_THAN;
1749 return CSTR_EQUAL;
1750 }
1751
1752 /******************************************************************************
1753 * CompareStringA (KERNEL32.@)
1754 *
1755 * Compare two locale sensitive strings.
1756 *
1757 * PARAMS
1758 * lcid [I] LCID for the comparison
1759 * style [I] Flags for the comparison (NORM_ constants from "winnls.h").
1760 * str1 [I] First string to compare
1761 * len1 [I] Length of str1, or -1 if str1 is NUL terminated
1762 * str2 [I] Second string to compare
1763 * len2 [I] Length of str2, or -1 if str2 is NUL terminated
1764 *
1765 * RETURNS
1766 * Success: CSTR_LESS_THAN, CSTR_EQUAL or CSTR_GREATER_THAN depending on whether
1767 * str1 is less than, equal to or greater than str2 respectively.
1768 * Failure: FALSE. Use GetLastError() to determine the cause.
1769 */
1770 INT WINAPI CompareStringA(LCID lcid, DWORD flags,
1771 LPCSTR str1, INT len1, LPCSTR str2, INT len2)
1772 {
1773 WCHAR *buf1W = NtCurrentTeb()->StaticUnicodeBuffer;
1774 WCHAR *buf2W = buf1W + 130;
1775 LPWSTR str1W, str2W;
1776 INT len1W = 0, len2W = 0, ret;
1777 UINT locale_cp = CP_ACP;
1778
1779 if (!str1 || !str2)
1780 {
1781 SetLastError(ERROR_INVALID_PARAMETER);
1782 return 0;
1783 }
1784 if (len1 < 0) len1 = strlen(str1);
1785 if (len2 < 0) len2 = strlen(str2);
1786
1787 if (!(flags & LOCALE_USE_CP_ACP)) locale_cp = get_lcid_codepage( lcid );
1788
1789 if (len1)
1790 {
1791 if (len1 <= 130) len1W = MultiByteToWideChar(locale_cp, 0, str1, len1, buf1W, 130);
1792 if (len1W)
1793 str1W = buf1W;
1794 else
1795 {
1796 len1W = MultiByteToWideChar(locale_cp, 0, str1, len1, NULL, 0);
1797 str1W = HeapAlloc(GetProcessHeap(), 0, len1W * sizeof(WCHAR));
1798 if (!str1W)
1799 {
1800 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1801 return 0;
1802 }
1803 MultiByteToWideChar(locale_cp, 0, str1, len1, str1W, len1W);
1804 }
1805 }
1806 else
1807 {
1808 len1W = 0;
1809 str1W = buf1W;
1810 }
1811
1812 if (len2)
1813 {
1814 if (len2 <= 130) len2W = MultiByteToWideChar(locale_cp, 0, str2, len2, buf2W, 130);
1815 if (len2W)
1816 str2W = buf2W;
1817 else
1818 {
1819 len2W = MultiByteToWideChar(locale_cp, 0, str2, len2, NULL, 0);
1820 str2W = HeapAlloc(GetProcessHeap(), 0, len2W * sizeof(WCHAR));
1821 if (!str2W)
1822 {
1823 if (str1W != buf1W) HeapFree(GetProcessHeap(), 0, str1W);
1824 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1825 return 0;
1826 }
1827 MultiByteToWideChar(locale_cp, 0, str2, len2, str2W, len2W);
1828 }
1829 }
1830 else
1831 {
1832 len2W = 0;
1833 str2W = buf2W;
1834 }
1835
1836 ret = CompareStringW(lcid, flags, str1W, len1W, str2W, len2W);
1837
1838 if (str1W != buf1W) HeapFree(GetProcessHeap(), 0, str1W);
1839 if (str2W != buf2W) HeapFree(GetProcessHeap(), 0, str2W);
1840 return ret;
1841 }
1842
1843 static HANDLE NLS_RegOpenKey(HANDLE hRootKey, LPCWSTR szKeyName)
1844 {
1845 UNICODE_STRING keyName;
1846 OBJECT_ATTRIBUTES attr;
1847 HANDLE hkey;
1848
1849 RtlInitUnicodeString( &keyName, szKeyName );
1850 InitializeObjectAttributes(&attr, &keyName, OBJ_CASE_INSENSITIVE, hRootKey, NULL);
1851
1852 if (NtOpenKey( &hkey, KEY_READ, &attr ) != STATUS_SUCCESS)
1853 hkey = 0;
1854
1855 return hkey;
1856 }
1857
1858 static BOOL NLS_RegEnumValue(HANDLE hKey, UINT ulIndex,
1859 LPWSTR szValueName, ULONG valueNameSize,
1860 LPWSTR szValueData, ULONG valueDataSize)
1861 {
1862 BYTE buffer[80];
1863 KEY_VALUE_FULL_INFORMATION *info = (KEY_VALUE_FULL_INFORMATION *)buffer;
1864 DWORD dwLen;
1865
1866 if (NtEnumerateValueKey( hKey, ulIndex, KeyValueFullInformation,
1867 buffer, sizeof(buffer), &dwLen ) != STATUS_SUCCESS ||
1868 info->NameLength > valueNameSize ||
1869 info->DataLength > valueDataSize)
1870 {
1871 return FALSE;
1872 }
1873
1874 TRACE("info->Name %s info->DataLength %d\n", debugstr_w(info->Name), info->DataLength);
1875
1876 memcpy( szValueName, info->Name, info->NameLength);
1877 szValueName[info->NameLength / sizeof(WCHAR)] = '\0';
1878 memcpy( szValueData, buffer + info->DataOffset, info->DataLength );
1879 szValueData[info->DataLength / sizeof(WCHAR)] = '\0';
1880
1881 TRACE("returning %s %s\n", debugstr_w(szValueName), debugstr_w(szValueData));
1882 return TRUE;
1883 }
1884
1885 static BOOL NLS_RegGetDword(HANDLE hKey, LPCWSTR szValueName, DWORD *lpVal)
1886 {
1887 BYTE buffer[128];
1888 const KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)buffer;
1889 DWORD dwSize = sizeof(buffer);
1890 UNICODE_STRING valueName;
1891
1892 RtlInitUnicodeString( &valueName, szValueName );
1893
1894 TRACE("%p, %s\n", hKey, debugstr_w(szValueName));
1895 if (NtQueryValueKey( hKey, &valueName, KeyValuePartialInformation,
1896 buffer, dwSize, &dwSize ) == STATUS_SUCCESS &&
1897 info->DataLength == sizeof(DWORD))
1898 {
1899 memcpy(lpVal, info->Data, sizeof(DWORD));
1900 return TRUE;
1901 }
1902
1903 return FALSE;
1904 }
1905
1906 static BOOL NLS_GetLanguageGroupName(LGRPID lgrpid, LPWSTR szName, ULONG nameSize)
1907 {
1908 LANGID langId;
1909 LPCWSTR szResourceName = MAKEINTRESOURCEW(((lgrpid + 0x2000) >> 4) + 1);
1910 HRSRC hResource;
1911 BOOL bRet = FALSE;
1912
1913 /* FIXME: Is it correct to use the system default langid? */
1914 langId = GetSystemDefaultLangID();
1915
1916 if (SUBLANGID(langId) == SUBLANG_NEUTRAL)
1917 langId = MAKELANGID( PRIMARYLANGID(langId), SUBLANG_DEFAULT );
1918
1919 hResource = FindResourceExW( kernel32_handle, (LPWSTR)RT_STRING, szResourceName, langId );
1920
1921 if (hResource)
1922 {
1923 HGLOBAL hResDir = LoadResource( kernel32_handle, hResource );
1924
1925 if (hResDir)
1926 {
1927 ULONG iResourceIndex = lgrpid & 0xf;
1928 LPCWSTR lpResEntry = LockResource( hResDir );
1929 ULONG i;
1930
1931 for (i = 0; i < iResourceIndex; i++)
1932 lpResEntry += *lpResEntry + 1;
1933
1934 if (*lpResEntry < nameSize)
1935 {
1936 memcpy( szName, lpResEntry + 1, *lpResEntry * sizeof(WCHAR) );
1937 szName[*lpResEntry] = '\0';
1938 bRet = TRUE;
1939 }
1940
1941 }
1942 FreeResource( hResource );
1943 }
1944 return bRet;
1945 }
1946
1947 /* Registry keys for NLS related information */
1948
1949 static const WCHAR szCountryListName[] = {
1950 '\\','R','e','g','i','s','t','r','y','\\',
1951 'M','a','c','h','i','n','e','\\','S','o','f','t','w','a','r','e','\\',
1952 'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\',
1953 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
1954 'T','e','l','e','p','h','o','n','y','\\',
1955 'C','o','u','n','t','r','y',' ','L','i','s','t','\0'
1956 };
1957
1958
1959 /* Callback function ptrs for EnumSystemLanguageGroupsA/W */
1960 typedef struct
1961 {
1962 LANGUAGEGROUP_ENUMPROCA procA;
1963 LANGUAGEGROUP_ENUMPROCW procW;
1964 DWORD dwFlags;
1965 LONG_PTR lParam;
1966 } ENUMLANGUAGEGROUP_CALLBACKS;
1967
1968 /* Internal implementation of EnumSystemLanguageGroupsA/W */
1969 static BOOL NLS_EnumSystemLanguageGroups(ENUMLANGUAGEGROUP_CALLBACKS *lpProcs)
1970 {
1971 WCHAR szNumber[10], szValue[4];
1972 HANDLE hKey;
1973 BOOL bContinue = TRUE;
1974 ULONG ulIndex = 0;
1975
1976 if (!lpProcs)
1977 {
1978 SetLastError(ERROR_INVALID_PARAMETER);
1979 return FALSE;
1980 }
1981
1982 switch (lpProcs->dwFlags)
1983 {
1984 case 0:
1985 /* Default to LGRPID_INSTALLED */
1986 lpProcs->dwFlags = LGRPID_INSTALLED;
1987 /* Fall through... */
1988 case LGRPID_INSTALLED:
1989 case LGRPID_SUPPORTED:
1990 break;
1991 default:
1992 SetLastError(ERROR_INVALID_FLAGS);
1993 return FALSE;
1994 }
1995
1996 hKey = NLS_RegOpenKey( 0, szLangGroupsKeyName );
1997
1998 if (!hKey)
1999 FIXME("NLS registry key not found. Please apply the default registry file 'wine.inf'\n");
2000
2001 while (bContinue)
2002 {
2003 if (NLS_RegEnumValue( hKey, ulIndex, szNumber, sizeof(szNumber),
2004 szValue, sizeof(szValue) ))
2005 {
2006 BOOL bInstalled = szValue[0] == '1' ? TRUE : FALSE;
2007 LGRPID lgrpid = strtoulW( szNumber, NULL, 16 );
2008
2009 TRACE("grpid %s (%sinstalled)\n", debugstr_w(szNumber),
2010 bInstalled ? "" : "not ");
2011
2012 if (lpProcs->dwFlags == LGRPID_SUPPORTED || bInstalled)
2013 {
2014 WCHAR szGrpName[48];
2015
2016 if (!NLS_GetLanguageGroupName( lgrpid, szGrpName, sizeof(szGrpName) / sizeof(WCHAR) ))
2017 szGrpName[0] = '\0';
2018
2019 if (lpProcs->procW)
2020 bContinue = lpProcs->procW( lgrpid, szNumber, szGrpName, lpProcs->dwFlags,
2021 lpProcs->lParam );
2022 else
2023 {
2024 char szNumberA[sizeof(szNumber)/sizeof(WCHAR)];
2025 char szGrpNameA[48];
2026
2027 /* FIXME: MSDN doesn't say which code page the W->A translation uses,
2028 * or whether the language names are ever localised. Assume CP_ACP.
2029 */
2030
2031 WideCharToMultiByte(CP_ACP, 0, szNumber, -1, szNumberA, sizeof(szNumberA), 0, 0);
2032 WideCharToMultiByte(CP_ACP, 0, szGrpName, -1, szGrpNameA, sizeof(szGrpNameA), 0, 0);
2033
2034 bContinue = lpProcs->procA( lgrpid, szNumberA, szGrpNameA, lpProcs->dwFlags,
2035 lpProcs->lParam );
2036 }
2037 }
2038
2039 ulIndex++;
2040 }
2041 else
2042 bContinue = FALSE;
2043
2044 if (!bContinue)
2045 break;
2046 }
2047
2048 if (hKey)
2049 NtClose( hKey );
2050
2051 return TRUE;
2052 }
2053
2054 /******************************************************************************
2055 * EnumSystemLanguageGroupsA (KERNEL32.@)
2056 *
2057 * Call a users function for each language group available on the system.
2058 *
2059 * PARAMS
2060 * pLangGrpEnumProc [I] Callback function to call for each language group
2061 * dwFlags [I] LGRPID_SUPPORTED=All Supported, LGRPID_INSTALLED=Installed only
2062 * lParam [I] User parameter to pass to pLangGrpEnumProc
2063 *
2064 * RETURNS
2065 * Success: TRUE.
2066 * Failure: FALSE. Use GetLastError() to determine the cause.
2067 */
2068 BOOL WINAPI EnumSystemLanguageGroupsA(LANGUAGEGROUP_ENUMPROCA pLangGrpEnumProc,
2069 DWORD dwFlags, LONG_PTR lParam)
2070 {
2071 ENUMLANGUAGEGROUP_CALLBACKS procs;
2072
2073 TRACE("(%p,0x%08X,0x%08lX)\n", pLangGrpEnumProc, dwFlags, lParam);
2074
2075 procs.procA = pLangGrpEnumProc;
2076 procs.procW = NULL;
2077 procs.dwFlags = dwFlags;
2078 procs.lParam = lParam;
2079
2080 return NLS_EnumSystemLanguageGroups( pLangGrpEnumProc ? &procs : NULL);
2081 }
2082
2083 /******************************************************************************
2084 * EnumSystemLanguageGroupsW (KERNEL32.@)
2085 *
2086 * See EnumSystemLanguageGroupsA.
2087 */
2088 BOOL WINAPI EnumSystemLanguageGroupsW(LANGUAGEGROUP_ENUMPROCW pLangGrpEnumProc,
2089 DWORD dwFlags, LONG_PTR lParam)
2090 {
2091 ENUMLANGUAGEGROUP_CALLBACKS procs;
2092
2093 TRACE("(%p,0x%08X,0x%08lX)\n", pLangGrpEnumProc, dwFlags, lParam);
2094
2095 procs.procA = NULL;
2096 procs.procW = pLangGrpEnumProc;
2097 procs.dwFlags = dwFlags;
2098 procs.lParam = lParam;
2099
2100 return NLS_EnumSystemLanguageGroups( pLangGrpEnumProc ? &procs : NULL);
2101 }
2102
2103 /******************************************************************************
2104 * IsValidLanguageGroup (KERNEL32.@)
2105 *
2106 * Determine if a language group is supported and/or installed.
2107 *
2108 * PARAMS
2109 * lgrpid [I] Language Group Id (LGRPID_ values from "winnls.h")
2110 * dwFlags [I] LGRPID_SUPPORTED=Supported, LGRPID_INSTALLED=Installed
2111 *
2112 * RETURNS
2113 * TRUE, if lgrpid is supported and/or installed, according to dwFlags.
2114 * FALSE otherwise.
2115 */
2116 BOOL WINAPI IsValidLanguageGroup(LGRPID lgrpid, DWORD dwFlags)
2117 {
2118 static const WCHAR szFormat[] = { '%','x','\0' };
2119 WCHAR szValueName[16], szValue[2];
2120 BOOL bSupported = FALSE, bInstalled = FALSE;
2121 HANDLE hKey;
2122
2123
2124 switch (dwFlags)
2125 {
2126 case LGRPID_INSTALLED:
2127 case LGRPID_SUPPORTED:
2128
2129 hKey = NLS_RegOpenKey( 0, szLangGroupsKeyName );
2130
2131 sprintfW( szValueName, szFormat, lgrpid );
2132
2133 if (NLS_RegGetDword( hKey, szValueName, (LPDWORD)szValue ))
2134 {
2135 bSupported = TRUE;
2136
2137 if (szValue[0] == '1')
2138 bInstalled = TRUE;
2139 }
2140
2141 if (hKey)
2142 NtClose( hKey );
2143
2144 break;
2145 }
2146
2147 if ((dwFlags == LGRPID_SUPPORTED && bSupported) ||
2148 (dwFlags == LGRPID_INSTALLED && bInstalled))
2149 return TRUE;
2150
2151 return FALSE;
2152 }
2153
2154 /* Callback function ptrs for EnumLanguageGrouplocalesA/W */
2155 typedef struct
2156 {
2157 LANGGROUPLOCALE_ENUMPROCA procA;
2158 LANGGROUPLOCALE_ENUMPROCW procW;
2159 DWORD dwFlags;
2160 LGRPID lgrpid;
2161 LONG_PTR lParam;
2162 } ENUMLANGUAGEGROUPLOCALE_CALLBACKS;
2163
2164 /* Internal implementation of EnumLanguageGrouplocalesA/W */
2165 static BOOL NLS_EnumLanguageGroupLocales(ENUMLANGUAGEGROUPLOCALE_CALLBACKS *lpProcs)
2166 {
2167 static const WCHAR szAlternateSortsKeyName[] = {
2168 'A','l','t','e','r','n','a','t','e',' ','S','o','r','t','s','\0'
2169 };
2170 WCHAR szNumber[10], szValue[4];
2171 HANDLE hKey;
2172 BOOL bContinue = TRUE, bAlternate = FALSE;
2173 LGRPID lgrpid;
2174 ULONG ulIndex = 1; /* Ignore default entry of 1st key */
2175
2176 if (!lpProcs || !lpProcs->lgrpid || lpProcs->lgrpid > LGRPID_ARMENIAN)
2177 {
2178 SetLastError(ERROR_INVALID_PARAMETER);
2179 return FALSE;
2180 }
2181
2182 if (lpProcs->dwFlags)
2183 {
2184 SetLastError(ERROR_INVALID_FLAGS);
2185 return FALSE;
2186 }
2187
2188 hKey = NLS_RegOpenKey( 0, szLocaleKeyName );
2189
2190 if (!hKey)
2191 WARN("NLS registry key not found. Please apply the default registry file 'wine.inf'\n");
2192
2193 while (bContinue)
2194 {
2195 if (NLS_RegEnumValue( hKey, ulIndex, szNumber, sizeof(szNumber),
2196 szValue, sizeof(szValue) ))
2197 {
2198 lgrpid = strtoulW( szValue, NULL, 16 );
2199
2200 TRACE("lcid %s, grpid %d (%smatched)\n", debugstr_w(szNumber),
2201 lgrpid, lgrpid == lpProcs->lgrpid ? "" : "not ");
2202
2203 if (lgrpid == lpProcs->lgrpid)
2204 {
2205 LCID lcid;
2206
2207 lcid = strtoulW( szNumber, NULL, 16 );
2208
2209 /* FIXME: native returns extra text for a few (17/150) locales, e.g:
2210 * '00000437 ;Georgian'
2211 * At present we only pass the LCID string.
2212 */
2213
2214 if (lpProcs->procW)
2215 bContinue = lpProcs->procW( lgrpid, lcid, szNumber, lpProcs->lParam );
2216 else
2217 {
2218 char szNumberA[sizeof(szNumber)/sizeof(WCHAR)];
2219
2220 WideCharToMultiByte(CP_ACP, 0, szNumber, -1, szNumberA, sizeof(szNumberA), 0, 0);
2221
2222 bContinue = lpProcs->procA( lgrpid, lcid, szNumberA, lpProcs->lParam );
2223 }
2224 }
2225
2226 ulIndex++;
2227 }
2228 else
2229 {
2230 /* Finished enumerating this key */
2231 if (!bAlternate)
2232 {
2233 /* Enumerate alternate sorts also */
2234 hKey = NLS_RegOpenKey( hKey, szAlternateSortsKeyName );
2235 bAlternate = TRUE;
2236 ulIndex = 0;
2237 }
2238 else
2239 bContinue = FALSE; /* Finished both keys */
2240 }
2241
2242 if (!bContinue)
2243 break;
2244 }
2245
2246 if (hKey)
2247 NtClose( hKey );
2248
2249 return TRUE;
2250 }
2251
2252 enum locationkind {
2253 LOCATION_NATION = 0,
2254 LOCATION_REGION,
2255 LOCATION_BOTH
2256 };
2257
2258 struct geoinfo_t {
2259 GEOID id;
2260 WCHAR iso2W[3];
2261 WCHAR iso3W[4];
2262 GEOID parent;
2263 INT uncode;
2264 enum locationkind kind;
2265 };
2266
2267 static const struct geoinfo_t geoinfodata[] = {
2268 { 2, {'A','G',0}, {'A','T','G',0}, 10039880, 28 }, /* Antigua and Barbuda */
2269 { 3, {'A','F',0}, {'A','F','G',0}, 47614, 4 }, /* Afghanistan */
2270 { 4, {'D','Z',0}, {'D','Z','A',0}, 42487, 12 }, /* Algeria */
2271 { 5, {'A','Z',0}, {'A','Z','E',0}, 47611, 31 }, /* Azerbaijan */
2272 { 6, {'A','L',0}, {'A','L','B',0}, 47610, 8 }, /* Albania */
2273 { 7, {'A','M',0}, {'A','R','M',0}, 47611, 51 }, /* Armenia */
2274 { 8, {'A','D',0}, {'A','N','D',0}, 47610, 20 }, /* Andorra */
2275 { 9, {'A','O',0}, {'A','G','O',0}, 42484, 24 }, /* Angola */
2276 { 10, {'A','S',0}, {'A','S','M',0}, 26286, 16 }, /* American Samoa */
2277 { 11, {'A','R',0}, {'A','R','G',0}, 31396, 32 }, /* Argentina */
2278 { 12, {'A','U',0}, {'A','U','S',0}, 10210825, 36 }, /* Australia */
2279 { 14, {'A','T',0}, {'A','U','T',0}, 10210824, 40 }, /* Austria */
2280 { 17, {'B','H',0}, {'B','H','R',0}, 47611, 48 }, /* Bahrain */
2281 { 18, {'B','B',0}, {'B','R','B',0}, 10039880, 52 }, /* Barbados */
2282 { 19, {'B','W',0}, {'B','W','A',0}, 10039883, 72 }, /* Botswana */
2283 { 20, {'B','M',0}, {'B','M','U',0}, 23581, 60 }, /* Bermuda */
2284 { 21, {'B','E',0}, {'B','E','L',0}, 10210824, 56 }, /* Belgium */
2285 { 22, {'B','S',0}, {'B','H','S',0}, 10039880, 44 }, /* Bahamas, The */
2286 { 23, {'B','D',0}, {'B','G','D',0}, 47614, 50 }, /* Bangladesh */
2287 { 24, {'B','Z',0}, {'B','L','Z',0}, 27082, 84 }, /* Belize */
2288 { 25, {'B','A',0}, {'B','I','H',0}, 47610, 70 }, /* Bosnia and Herzegovina */
2289 { 26, {'B','O',0}, {'B','O','L',0}, 31396, 68 }, /* Bolivia */
2290 { 27, {'M','M',0}, {'M','M','R',0}, 47599, 104 }, /* Myanmar */
2291 { 28, {'B','J',0}, {'B','E','N',0}, 42483, 204 }, /* Benin */
2292 { 29, {'B','Y',0}, {'B','L','R',0}, 47609, 112 }, /* Belarus */
2293 { 30, {'S','B',0}, {'S','L','B',0}, 20900, 90 }, /* Solomon Islands */
2294 { 32, {'B','R',0}, {'B','R','A',0}, 31396, 76 }, /* Brazil */
2295 { 34, {'B','T',0}, {'B','T','N',0}, 47614, 64 }, /* Bhutan */
2296 { 35, {'B','G',0}, {'B','G','R',0}, 47609, 100 }, /* Bulgaria */
2297 { 37, {'B','N',0}, {'B','R','N',0}, 47599, 96 }, /* Brunei */
2298 { 38, {'B','I',0}, {'B','D','I',0}, 47603, 108 }, /* Burundi */
2299 { 39, {'C','A',0}, {'C','A','N',0}, 23581, 124 }, /* Canada */
2300 { 40, {'K','H',0}, {'K','H','M',0}, 47599, 116 }, /* Cambodia */
2301 { 41, {'T','D',0}, {'T','C','D',0}, 42484, 148 }, /* Chad */
2302 { 42, {'L','K',0}, {'L','K','A',0}, 47614, 144 }, /* Sri Lanka */
2303 { 43, {'C','G',0}, {'C','O','G',0}, 42484, 178 }, /* Congo */
2304 { 44, {'C','D',0}, {'C','O','D',0}, 42484, 180 }, /* Congo (DRC) */
2305 { 45, {'C','N',0}, {'C','H','N',0}, 47600, 156 }, /* China */
2306 { 46, {'C','L',0}, {'C','H','L',0}, 31396, 152 }, /* Chile */
2307 { 49, {'C','M',0}, {'C','M','R',0}, 42484, 120 }, /* Cameroon */
2308 { 50, {'K','M',0}, {'C','O','M',0}, 47603, 174 }, /* Comoros */
2309 { 51, {'C','O',0}, {'C','O','L',0}, 31396, 170 }, /* Colombia */
2310 { 54, {'C','R',0}, {'C','R','I',0}, 27082, 188 }, /* Costa Rica */
2311 { 55, {'C','F',0}, {'C','A','F',0}, 42484, 140 }, /* Central African Republic */
2312 { 56, {'C','U',0}, {'C','U','B',0}, 10039880, 192 }, /* Cuba */
2313 { 57, {'C','V',0}, {'C','P','V',0}, 42483, 132 }, /* Cape Verde */
2314 { 59, {'C','Y',0}, {'C','Y','P',0}, 47611, 196 }, /* Cyprus */
2315 { 61, {'D','K',0}, {'D','N','K',0}, 10039882, 208 }, /* Denmark */
2316 { 62, {'D','J',0}, {'D','J','I',0}, 47603, 262 }, /* Djibouti */
2317 { 63, {'D','M',0}, {'D','M','A',0}, 10039880, 212 }, /* Dominica */
2318 { 65, {'D','O',0}, {'D','O','M',0}, 10039880, 214 }, /* Dominican Republic */
2319 { 66, {'E','C',0}, {'E','C','U',0}, 31396, 218 }, /* Ecuador */
2320 { 67, {'E','G',0}, {'E','G','Y',0}, 42487, 818 }, /* Egypt */
2321 { 68, {'I','E',0}, {'I','R','L',0}, 10039882, 372 }, /* Ireland */
2322 { 69, {'G','Q',0}, {'G','N','Q',0}, 42484, 226 }, /* Equatorial Guinea */
2323 { 70, {'E','E',0}, {'E','S','T',0}, 10039882, 233 }, /* Estonia */
2324 { 71, {'E','R',0}, {'E','R','I',0}, 47603, 232 }, /* Eritrea */
2325 { 72, {'S','V',0}, {'S','L','V',0}, 27082, 222 }, /* El Salvador */
2326 { 73, {'E','T',0}, {'E','T','H',0}, 47603, 231 }, /* Ethiopia */
2327 { 75, {'C','Z',0}, {'C','Z','E',0}, 47609, 203 }, /* Czech Republic */
2328 { 77, {'F','I',0}, {'F','I','N',0}, 10039882, 246 }, /* Finland */
2329 { 78, {'F','J',0}, {'F','J','I',0}, 20900, 242 }, /* Fiji Islands */
2330 { 80, {'F','M',0}, {'F','S','M',0}, 21206, 583 }, /* Micronesia */
2331 { 81, {'F','O',0}, {'F','R','O',0}, 10039882, 234 }, /* Faroe Islands */
2332 { 84, {'F','R',0}, {'F','R','A',0}, 10210824, 250 }, /* France */
2333 { 86, {'G','M',0}, {'G','M','B',0}, 42483, 270 }, /* Gambia, The */
2334 { 87, {'G','A',0}, {'G','A','B',0}, 42484, 266 }, /* Gabon */
2335 { 88, {'G','E',0}, {'G','E','O',0}, 47611, 268 }, /* Georgia */
2336 { 89, {'G','H',0}, {'G','H','A',0}, 42483, 288 }, /* Ghana */
2337 { 90, {'G','I',0}, {'G','I','B',0}, 47610, 292 }, /* Gibraltar */
2338 { 91, {'G','D',0}, {'G','R','D',0}, 10039880, 308 }, /* Grenada */
2339 { 93, {'G','L',0}, {'G','R','L',0}, 23581, 304 }, /* Greenland */
2340 { 94, {'D','E',0}, {'D','E','U',0}, 10210824, 276 }, /* Germany */
2341 { 98, {'G','R',0}, {'G','R','C',0}, 47610, 300 }, /* Greece */
2342 { 99, {'G','T',0}, {'G','T','M',0}, 27082, 320 }, /* Guatemala */
2343 { 100, {'G','N',0}, {'G','I','N',0}, 42483, 324 }, /* Guinea */
2344 { 101, {'G','Y',0}, {'G','U','Y',0}, 31396, 328 }, /* Guyana */
2345 { 103, {'H','T',0}, {'H','T','I',0}, 10039880, 332 }, /* Haiti */
2346 { 104, {'H','K',0}, {'H','K','G',0}, 47600, 344 }, /* Hong Kong S.A.R. */
2347 { 106, {'H','N',0}, {'H','N','D',0}, 27082, 340 }, /* Honduras */
2348 { 108, {'H','R',0}, {'H','R','V',0}, 47610, 191 }, /* Croatia */
2349 { 109, {'H','U',0}, {'H','U','N',0}, 47609, 348 }, /* Hungary */
2350 { 110, {'I','S',0}, {'I','S','L',0}, 10039882, 352 }, /* Iceland */
2351 { 111, {'I','D',0}, {'I','D','N',0}, 47599, 360 }, /* Indonesia */
2352 { 113, {'I','N',0}, {'I','N','D',0}, 47614, 356 }, /* India */
2353 { 114, {'I','O',0}, {'I','O','T',0}, 39070, 86 }, /* British Indian Ocean Territory */
2354 { 116, {'I','R',0}, {'I','R','N',0}, 47614, 364 }, /* Iran */
2355 { 117, {'I','L',0}, {'I','S','R',0}, 47611, 376 }, /* Israel */
2356 { 118, {'I','T',0}, {'I','T','A',0}, 47610, 380 }, /* Italy */
2357 { 119, {'C','I',0}, {'C','I','V',0}, 42483, 384 }, /* Côte d'Ivoire */
2358 { 121, {'I','Q',0}, {'I','R','Q',0}, 47611, 368 }, /* Iraq */
2359 { 122, {'J','P',0}, {'J','P','N',0}, 47600, 392 }, /* Japan */
2360 { 124, {'J','M',0}, {'J','A','M',0}, 10039880, 388 }, /* Jamaica */
2361 { 125, {'S','J',0}, {'S','J','M',0}, 10039882, 744 }, /* Jan Mayen */
2362 { 126, {'J','O',0}, {'J','O','R',0}, 47611, 400 }, /* Jordan */
2363 { 127, {'X','X',0}, {'X','X',0}, 161832256 }, /* Johnston Atoll */
2364 { 129, {'K','E',0}, {'K','E','N',0}, 47603, 404 }, /* Kenya */
2365 { 130, {'K','G',0}, {'K','G','Z',0}, 47590, 417 }, /* Kyrgyzstan */
2366 { 131, {'K','P',0}, {'P','R','K',0}, 47600, 408 }, /* North Korea */
2367 { 133, {'K','I',0}, {'K','I','R',0}, 21206, 296 }, /* Kiribati */
2368 { 134, {'K','R',0}, {'K','O','R',0}, 47600, 410 }, /* Korea */
2369 { 136, {'K','W',0}, {'K','W','T',0}, 47611, 414 }, /* Kuwait */
2370 { 137, {'K','Z',0}, {'K','A','Z',0}, 47590, 398 }, /* Kazakhstan */
2371 { 138, {'L','A',0}, {'L','A','O',0}, 47599, 418 }, /* Laos */
2372 { 139, {'L','B',0}, {'L','B','N',0}, 47611, 422 }, /* Lebanon */
2373 { 140, {'L','V',0}, {'L','V','A',0}, 10039882, 428 }, /* Latvia */
2374 { 141, {'L','T',0}, {'L','T','U',0}, 10039882, 440 }, /* Lithuania */
2375 { 142, {'L','R',0}, {'L','B','R',0}, 42483, 430 }, /* Liberia */
2376 { 143, {'S','K',0}, {'S','V','K',0}, 47609, 703 }, /* Slovakia */
2377 { 145, {'L','I',0}, {'L','I','E',0}, 10210824, 438 }, /* Liechtenstein */
2378 { 146, {'L','S',0}, {'L','S','O',0}, 10039883, 426 }, /* Lesotho */
2379 { 147, {'L','U',0}, {'L','U','X',0}, 10210824, 442 }, /* Luxembourg */
2380 { 148, {'L','Y',0}, {'L','B','Y',0}, 42487, 434 }, /* Libya */
2381 { 149, {'M','G',0}, {'M','D','G',0}, 47603, 450 }, /* Madagascar */
2382 { 151, {'M','O',0}, {'M','A','C',0}, 47600, 446 }, /* Macao S.A.R. */
2383 { 152, {'M','D',0}, {'M','D','A',0}, 47609, 498 }, /* Moldova */
2384 { 154, {'M','N',0}, {'M','N','G',0}, 47600, 496 }, /* Mongolia */
2385 { 156, {'M','W',0}, {'M','W','I',0}, 47603, 454 }, /* Malawi */
2386 { 157, {'M','L',0}, {'M','L','I',0}, 42483, 466 }, /* Mali */
2387 { 158, {'M','C',0}, {'M','C','O',0}, 10210824, 492 }, /* Monaco */
2388 { 159, {'M','A',0}, {'M','A','R',0}, 42487, 504 }, /* Morocco */
2389 { 160, {'M','U',0}, {'M','U','S',0}, 47603, 480 }, /* Mauritius */
2390 { 162, {'M','R',0}, {'M','R','T',0}, 42483, 478 }, /* Mauritania */
2391 { 163, {'M','T',0}, {'M','L','T',0}, 47610, 470 }, /* Malta */
2392 { 164, {'O','M',0}, {'O','M','N',0}, 47611, 512 }, /* Oman */
2393 { 165, {'M','V',0}, {'M','D','V',0}, 47614, 462 }, /* Maldives */
2394 { 166, {'M','X',0}, {'M','E','X',0}, 27082, 484 }, /* Mexico */
2395 { 167, {'M','Y',0}, {'M','Y','S',0}, 47599, 458 }, /* Malaysia */
2396 { 168, {'M','Z',0}, {'M','O','Z',0}, 47603, 508 }, /* Mozambique */
2397 { 173, {'N','E',0}, {'N','E','R',0}, 42483, 562 }, /* Niger */
2398 { 174, {'V','U',0}, {'V','U','T',0}, 20900, 548 }, /* Vanuatu */
2399 { 175, {'N','G',0}, {'N','G','A',0}, 42483, 566 }, /* Nigeria */
2400 { 176, {'N','L',0}, {'N','L','D',0}, 10210824, 528 }, /* Netherlands */
2401 { 177, {'N','O',0}, {'N','O','R',0}, 10039882, 578 }, /* Norway */
2402 { 178, {'N','P',0}, {'N','P','L',0}, 47614, 524 }, /* Nepal */
2403 { 180, {'N','R',0}, {'N','R','U',0}, 21206, 520 }, /* Nauru */
2404 { 181, {'S','R',0}, {'S','U','R',0}, 31396, 740 }, /* Suriname */
2405 { 182, {'N','I',0}, {'N','I','C',0}, 27082, 558 }, /* Nicaragua */
2406 { 183, {'N','Z',0}, {'N','Z','L',0}, 10210825, 554 }, /* New Zealand */
2407 { 184, {'P','S',0}, {'P','S','E',0}, 47611, 275 }, /* Palestinian Authority */
2408 { 185, {'P','Y',0}, {'P','R','Y',0}, 31396, 600 }, /* Paraguay */
2409 { 187, {'P','E',0}, {'P','E','R',0}, 31396, 604 }, /* Peru */
2410 { 190, {'P','K',0}, {'P','A','K',0}, 47614, 586 }, /* Pakistan */
2411 { 191, {'P','L',0}, {'P','O','L',0}, 47609, 616 }, /* Poland */
2412 { 192, {'P','A',0}, {'P','A','N',0}, 27082, 591 }, /* Panama */
2413 { 193, {'P','T',0}, {'P','R','T',0}, 47610, 620 }, /* Portugal */
2414 { 194, {'P','G',0}, {'P','N','G',0}, 20900, 598 }, /* Papua New Guinea */
2415 { 195, {'P','W',0}, {'P','L','W',0}, 21206, 585 }, /* Palau */
2416 { 196, {'G','W',0}, {'G','N','B',0}, 42483, 624 }, /* Guinea-Bissau */
2417 { 197, {'Q','A',0}, {'Q','A','T',0}, 47611, 634 }, /* Qatar */
2418 { 198, {'R','E',0}, {'R','E','U',0}, 47603, 638 }, /* Reunion */
2419 { 199, {'M','H',0}, {'M','H','L',0}, 21206, 584 }, /* Marshall Islands */
2420 { 200, {'R','O',0}, {'R','O','U',0}, 47609, 642 }, /* Romania */
2421 { 201, {'P','H',0}, {'P','H','L',0}, 47599, 608 }, /* Philippines */
2422 { 202, {'P','R',0}, {'P','R','I',0}, 10039880, 630 }, /* Puerto Rico */
2423 { 203, {'R','U',0}, {'R','U','S',0}, 47609, 643 }, /* Russia */
2424 { 204, {'R','W',0}, {'R','W','A',0}, 47603, 646 }, /* Rwanda */
2425 { 205, {'S','A',0}, {'S','A','U',0}, 47611, 682 }, /* Saudi Arabia */
2426 { 206, {'P','M',0}, {'S','P','M',0}, 23581, 666 }, /* St. Pierre and Miquelon */
2427 { 207, {'K','N',0}, {'K','N','A',0}, 10039880, 659 }, /* St. Kitts and Nevis */
2428 { 208, {'S','C',0}, {'S','Y','C',0}, 47603, 690 }, /* Seychelles */
2429 { 209, {'Z','A',0}, {'Z','A','F',0}, 10039883, 710 }, /* South Africa */
2430 { 210, {'S','N',0}, {'S','E','N',0}, 42483, 686 }, /* Senegal */
2431 { 212, {'S','I',0}, {'S','V','N',0}, 47610, 705 }, /* Slovenia */
2432 { 213, {'S','L',0}, {'S','L','E',0}, 42483, 694 }, /* Sierra Leone */
2433 { 214, {'S','M',0}, {'S','M','R',0}, 47610, 674 }, /* San Marino */
2434 { 215, {'S','G',0}, {'S','G','P',0}, 47599, 702 }, /* Singapore */
2435 { 216, {'S','O',0}, {'S','O','M',0}, 47603, 706 }, /* Somalia */
2436 { 217, {'E','S',0}, {'E','S','P',0}, 47610, 724 }, /* Spain */
2437 { 218, {'L','C',0}, {'L','C','A',0}, 10039880, 662 }, /* St. Lucia */
2438 { 219, {'S','D',0}, {'S','D','N',0}, 42487, 736 }, /* Sudan */
2439 { 220, {'S','J',0}, {'S','J','M',0}, 10039882, 744 }, /* Svalbard */
2440 { 221, {'S','E',0}, {'S','W','E',0}, 10039882, 752 }, /* Sweden */
2441 { 222, {'S','Y',0}, {'S','Y','R',0}, 47611, 760 }, /* Syria */
2442 { 223, {'C','H',0}, {'C','H','E',0}, 10210824, 756 }, /* Switzerland */
2443 { 224, {'A','E',0}, {'A','R','E',0}, 47611, 784 }, /* United Arab Emirates */
2444 { 225, {'T','T',0}, {'T','T','O',0}, 10039880, 780 }, /* Trinidad and Tobago */
2445 { 227, {'T','H',0}, {'T','H','A',0}, 47599, 764 }, /* Thailand */
2446 { 228, {'T','J',0}, {'T','J','K',0}, 47590, 762 }, /* Tajikistan */
2447 { 231, {'T','O',0}, {'T','O','N',0}, 26286, 776 }, /* Tonga */
2448 { 232, {'T','G',0}, {'T','G','O',0}, 42483, 768 }, /* Togo */
2449 { 233, {'S','T',0}, {'S','T','P',0}, 42484, 678 }, /* São Tomé and Príncipe */
2450 { 234, {'T','N',0}, {'T','U','N',0}, 42487, 788 }, /* Tunisia */
2451 { 235, {'T','R',0}, {'T','U','R',0}, 47611, 792 }, /* Turkey */
2452 { 236, {'T','V',0}, {'T','U','V',0}, 26286, 798 }, /* Tuvalu */
2453 { 237, {'T','W',0}, {'T','W','N',0}, 47600, 158 }, /* Taiwan */
2454 { 238, {'T','M',0}, {'T','K','M',0}, 47590, 795 }, /* Turkmenistan */
2455 { 239, {'T','Z',0}, {'T','Z','A',0}, 47603, 834 }, /* Tanzania */
2456 { 240, {'U','G',0}, {'U','G','A',0}, 47603, 800 }, /* Uganda */
2457 { 241, {'U','A',0}, {'U','K','R',0}, 47609, 804 }, /* Ukraine */
2458 { 242, {'G','B',0}, {'G','B','R',0}, 10039882, 826 }, /* United Kingdom */
2459 { 244, {'U','S',0}, {'U','S','A',0}, 23581, 840 }, /* United States */
2460 { 245, {'B','F',0}, {'B','F','A',0}, 42483, 854 }, /* Burkina Faso */
2461 { 246, {'U','Y',0}, {'U','R','Y',0}, 31396, 858 }, /* Uruguay */
2462 { 247, {'U','Z',0}, {'U','Z','B',0}, 47590, 860 }, /* Uzbekistan */
2463 { 248, {'V','C',0}, {'V','C','T',0}, 10039880, 670 }, /* St. Vincent and the Grenadines */
2464 { 249, {'V','E',0}, {'V','E','N',0}, 31396, 862 }, /* Bolivarian Republic of Venezuela */
2465 { 251, {'V','N',0}, {'V','N','M',0}, 47599, 704 }, /* Vietnam */
2466 { 252, {'V','I',0}, {'V','I','R',0}, 10039880, 850 }, /* Virgin Islands */
2467 { 253, {'V','A',0}, {'V','A','T',0}, 47610, 336 }, /* Vatican City */
2468 { 254, {'N','A',0}, {'N','A','M',0}, 10039883, 516 }, /* Namibia */
2469 { 257, {'E','H',0}, {'E','S','H',0}, 42487, 732 }, /* Western Sahara (disputed) */
2470 { 258, {'X','X',0}, {'X','X',0}, 161832256 }, /* Wake Island */
2471 { 259, {'W','S',0}, {'W','S','M',0}, 26286, 882 }, /* Samoa */
2472 { 260, {'S','Z',0}, {'S','W','Z',0}, 10039883, 748 }, /* Swaziland */
2473 { 261, {'Y','E',0}, {'Y','E','M',0}, 47611, 887 }, /* Yemen */
2474 { 263, {'Z','M',0}, {'Z','M','B',0}, 47603, 894 }, /* Zambia */
2475 { 264, {'Z','W',0}, {'Z','W','E',0}, 47603, 716 }, /* Zimbabwe */
2476 { 269, {'C','S',0}, {'S','C','G',0}, 47610, 891 }, /* Serbia and Montenegro (Former) */
2477 { 270, {'M','E',0}, {'M','N','E',0}, 47610, 499 }, /* Montenegro */
2478 { 271, {'R','S',0}, {'S','R','B',0}, 47610, 688 }, /* Serbia */
2479 { 273, {'C','W',0}, {'C','U','W',0}, 10039880, 531 }, /* Curaçao */
2480 { 276, {'S','S',0}, {'S','S','D',0}, 42487, 728 }, /* South Sudan */
2481 { 300, {'A','I',0}, {'A','I','A',0}, 10039880, 660 }, /* Anguilla */
2482 { 301, {'A','Q',0}, {'A','T','A',0}, 39070, 10 }, /* Antarctica */
2483 { 302, {'A','W',0}, {'A','B','W',0}, 10039880, 533 }, /* Aruba */
2484 { 303, {'X','X',0}, {'X','X',0}, 39070 }, /* Ascension Island */
2485 { 304, {'X','X',0}, {'X','X',0}, 10210825 }, /* Ashmore and Cartier Islands */
2486 { 305, {'X','X',0}, {'X','X',0}, 161832256 }, /* Baker Island */
2487 { 306, {'B','V',0}, {'B','V','T',0}, 39070, 74 }, /* Bouvet Island */
2488 { 307, {'K','Y',0}, {'C','Y','M',0}, 10039880, 136 }, /* Cayman Islands */
2489 { 308, {'X','X',0}, {'X','X',0}, 10210824, 0, LOCATION_BOTH }, /* Channel Islands */
2490 { 309, {'C','X',0}, {'C','X','R',0}, 12, 162 }, /* Christmas Island */
2491 { 310, {'X','X',0}, {'X','X',0}, 27114 }, /* Clipperton Island */
2492 { 311, {'C','C',0}, {'C','C','K',0}, 10210825, 166 }, /* Cocos (Keeling) Islands */
2493 { 312, {'C','K',0}, {'C','O','K',0}, 26286, 184 }, /* Cook Islands */
2494 { 313, {'X','X',0}, {'X','X',0}, 10210825 }, /* Coral Sea Islands */
2495 { 314, {'X','X',0}, {'X','X',0}, 114 }, /* Diego Garcia */
2496 { 315, {'F','K',0}, {'F','L','K',0}, 31396, 238 }, /* Falkland Islands (Islas Malvinas) */
2497 { 317, {'G','F',0}, {'G','U','F',0}, 31396, 254 }, /* French Guiana */
2498 { 318, {'P','F',0}, {'P','Y','F',0}, 26286, 258 }, /* French Polynesia */
2499 { 319, {'T','F',0}, {'A','T','F',0}, 39070, 260 }, /* French Southern and Antarctic Lands */
2500 { 321, {'G','P',0}, {'G','L','P',0}, 10039880, 312 }, /* Guadeloupe */
2501 { 322, {'G','U',0}, {'G','U','M',0}, 21206, 316 }, /* Guam */
2502 { 323, {'X','X',0}, {'X','X',0}, 39070 }, /* Guantanamo Bay */
2503 { 324, {'G','G',0}, {'G','G','Y',0}, 308, 831 }, /* Guernsey */
2504 { 325, {'H','M',0}, {'H','M','D',0}, 39070, 334 }, /* Heard Island and McDonald Islands */
2505 { 326, {'X','X',0}, {'X','X',0}, 161832256 }, /* Howland Island */
2506 { 327, {'X','X',0}, {'X','X',0}, 161832256 }, /* Jarvis Island */
2507 { 328, {'J','E',0}, {'J','E','Y',0}, 308, 832 }, /* Jersey */
2508 { 329, {'X','X',0}, {'X','X',0}, 161832256 }, /* Kingman Reef */
2509 { 330, {'M','Q',0}, {'M','T','Q',0}, 10039880, 474 }, /* Martinique */
2510 { 331, {'Y','T',0}, {'M','Y','T',0}, 47603, 175 }, /* Mayotte */
2511 { 332, {'M','S',0}, {'M','S','R',0}, 10039880, 500 }, /* Montserrat */
2512 { 333, {'A','N',0}, {'A','N','T',0}, 10039880, 530, LOCATION_BOTH }, /* Netherlands Antilles (Former) */
2513 { 334, {'N','C',0}, {'N','C','L',0}, 20900, 540 }, /* New Caledonia */
2514 { 335, {'N','U',0}, {'N','I','U',0}, 26286, 570 }, /* Niue */
2515 { 336, {'N','F',0}, {'N','F','K',0}, 10210825, 574 }, /* Norfolk Island */
2516 { 337, {'M','P',0}, {'M','N','P',0}, 21206, 580 }, /* Northern Mariana Islands */
2517 { 338, {'X','X',0}, {'X','X',0}, 161832256 }, /* Palmyra Atoll */
2518 { 339, {'P','N',0}, {'P','C','N',0}, 26286, 612 }, /* Pitcairn Islands */
2519 { 340, {'X','X',0}, {'X','X',0}, 337 }, /* Rota Island */
2520 { 341, {'X','X',0}, {'X','X',0}, 337 }, /* Saipan */
2521 { 342, {'G','S',0}, {'S','G','S',0}, 39070, 239 }, /* South Georgia and the South Sandwich Islands */
2522 { 343, {'S','H',0}, {'S','H','N',0}, 42483, 654 }, /* St. Helena */
2523 { 346, {'X','X',0}, {'X','X',0}, 337 }, /* Tinian Island */
2524 { 347, {'T','K',0}, {'T','K','L',0}, 26286, 772 }, /* Tokelau */
2525 { 348, {'X','X',0}, {'X','X',0}, 39070 }, /* Tristan da Cunha */
2526 { 349, {'T','C',0}, {'T','C','A',0}, 10039880, 796 }, /* Turks and Caicos Islands */
2527 { 351, {'V','G',0}, {'V','G','B',0}, 10039880, 92 }, /* Virgin Islands, British */
2528 { 352, {'W','F',0}, {'W','L','F',0}, 26286, 876 }, /* Wallis and Futuna */
2529 { 742, {'X','X',0}, {'X','X',0}, 39070, 0, LOCATION_REGION }, /* Africa */
2530 { 2129, {'X','X',0}, {'X','X',0}, 39070, 0, LOCATION_REGION }, /* Asia */
2531 { 10541, {'X','X',0}, {'X','X',0}, 39070, 0, LOCATION_REGION }, /* Europe */
2532 { 15126, {'I','M',0}, {'I','M','N',0}, 10039882, 833 }, /* Man, Isle of */
2533 { 19618, {'M','K',0}, {'M','K','D',0}, 47610, 807 }, /* Macedonia, Former Yugoslav Republic of */
2534 { 20900, {'X','X',0}, {'X','X',0}, 27114, 0, LOCATION_REGION }, /* Melanesia */
2535 { 21206, {'X','X',0}, {'X','X',0}, 27114, 0, LOCATION_REGION }, /* Micronesia */
2536 { 21242, {'X','X',0}, {'X','X',0}, 161832256 }, /* Midway Islands */
2537 { 23581, {'X','X',0}, {'X','X',0}, 10026358, 0, LOCATION_REGION }, /* Northern America */
2538 { 26286, {'X','X',0}, {'X','X',0}, 27114, 0, LOCATION_REGION }, /* Polynesia */
2539 { 27082, {'X','X',0}, {'X','X',0}, 161832257, 0, LOCATION_REGION }, /* Central America */
2540 { 27114, {'X','X',0}, {'X','X',0}, 39070, 0, LOCATION_REGION }, /* Oceania */
2541 { 30967, {'S','X',0}, {'S','X','M',0}, 10039880, 534 }, /* Sint Maarten (Dutch part) */
2542 { 31396, {'X','X',0}, {'X','X',0}, 161832257, 0, LOCATION_REGION }, /* South America */
2543 { 31706, {'M','F',0}, {'M','A','F',0}, 10039880, 663 }, /* Saint Martin (French part) */
2544 { 39070, {'X','X',0}, {'X','X',0}, 39070, 0, LOCATION_REGION }, /* World */
2545 { 42483, {'X','X',0}, {'X','X',0}, 742, 0, LOCATION_REGION }, /* Western Africa */
2546 { 42484, {'X','X',0}, {'X','X',0}, 742, 0, LOCATION_REGION }, /* Middle Africa */
2547 { 42487, {'X','X',0}, {'X','X',0}, 742, 0, LOCATION_REGION }, /* Northern Africa */
2548 { 47590, {'X','X',0}, {'X','X',0}, 2129, 0, LOCATION_REGION }, /* Central Asia */
2549 { 47599, {'X','X',0}, {'X','X',0}, 2129, 0, LOCATION_REGION }, /* South-Eastern Asia */
2550 { 47600, {'X','X',0}, {'X','X',0}, 2129, 0, LOCATION_REGION }, /* Eastern Asia */
2551 { 47603, {'X','X',0}, {'X','X',0}, 742, 0, LOCATION_REGION }, /* Eastern Africa */
2552 { 47609, {'X','X',0}, {'X','X',0}, 10541, 0, LOCATION_REGION }, /* Eastern Europe */
2553 { 47610, {'X','X',0}, {'X','X',0}, 10541, 0, LOCATION_REGION }, /* Southern Europe */
2554 { 47611, {'X','X',0}, {'X','X',0}, 2129, 0, LOCATION_REGION }, /* Middle East */
2555 { 47614, {'X','X',0}, {'X','X',0}, 2129, 0, LOCATION_REGION }, /* Southern Asia */
2556 { 7299303, {'T','L',0}, {'T','L','S',0}, 47599, 626 }, /* Democratic Republic of Timor-Leste */
2557 { 10026358, {'X','X',0}, {'X','X',0}, 39070, 0, LOCATION_REGION }, /* Americas */
2558 { 10028789, {'A','X',0}, {'A','L','A',0}, 10039882, 248 }, /* Åland Islands */
2559 { 10039880, {'X','X',0}, {'X','X',0}, 161832257, 0, LOCATION_REGION }, /* Caribbean */
2560 { 10039882, {'X','X',0}, {'X','X',0}, 10541, 0, LOCATION_REGION }, /* Northern Europe */
2561 { 10039883, {'X','X',0}, {'X','X',0}, 742, 0, LOCATION_REGION }, /* Southern Africa */
2562 { 10210824, {'X','X',0}, {'X','X',0}, 10541, 0, LOCATION_REGION }, /* Western Europe */
2563 { 10210825, {'X','X',0}, {'X','X',0}, 27114, 0, LOCATION_REGION }, /* Australia and New Zealand */
2564 { 161832015, {'B','L',0}, {'B','L','M',0}, 10039880, 652 }, /* Saint Barthélemy */
2565 { 161832256, {'U','M',0}, {'U','M','I',0}, 27114, 581 }, /* U.S. Minor Outlying Islands */
2566 { 161832257, {'X','X',0}, {'X','X',0}, 10026358, 0, LOCATION_REGION }, /* Latin America and the Caribbean */
2567 };
2568
2569 /******************************************************************************
2570 * EnumLanguageGroupLocalesA (KERNEL32.@)
2571 *
2572 * Call a users function for every locale in a language group available on the system.
2573 *
2574 * PARAMS
2575 * pLangGrpLcEnumProc [I] Callback function to call for each locale
2576 * lgrpid [I] Language group (LGRPID_ values from "winnls.h")
2577 * dwFlags [I] Reserved, set to 0
2578 * lParam [I] User parameter to pass to pLangGrpLcEnumProc
2579 *
2580 * RETURNS
2581 * Success: TRUE.
2582 * Failure: FALSE. Use GetLastError() to determine the cause.
2583 */
2584 BOOL WINAPI EnumLanguageGroupLocalesA(LANGGROUPLOCALE_ENUMPROCA pLangGrpLcEnumProc,
2585 LGRPID lgrpid, DWORD dwFlags, LONG_PTR lParam)
2586 {
2587 ENUMLANGUAGEGROUPLOCALE_CALLBACKS callbacks;
2588
2589 TRACE("(%p,0x%08X,0x%08X,0x%08lX)\n", pLangGrpLcEnumProc, lgrpid, dwFlags, lParam);
2590
2591 callbacks.procA = pLangGrpLcEnumProc;
2592 callbacks.procW = NULL;
2593 callbacks.dwFlags = dwFlags;
2594 callbacks.lgrpid = lgrpid;
2595 callbacks.lParam = lParam;
2596
2597 return NLS_EnumLanguageGroupLocales( pLangGrpLcEnumProc ? &callbacks : NULL );
2598 }
2599
2600 /******************************************************************************
2601 * EnumLanguageGroupLocalesW (KERNEL32.@)
2602 *
2603 * See EnumLanguageGroupLocalesA.
2604 */
2605 BOOL WINAPI EnumLanguageGroupLocalesW(LANGGROUPLOCALE_ENUMPROCW pLangGrpLcEnumProc,
2606 LGRPID lgrpid, DWORD dwFlags, LONG_PTR lParam)
2607 {
2608 ENUMLANGUAGEGROUPLOCALE_CALLBACKS callbacks;
2609
2610 TRACE("(%p,0x%08X,0x%08X,0x%08lX)\n", pLangGrpLcEnumProc, lgrpid, dwFlags, lParam);
2611
2612 callbacks.procA = NULL;
2613 callbacks.procW = pLangGrpLcEnumProc;
2614 callbacks.dwFlags = dwFlags;
2615 callbacks.lgrpid = lgrpid;
2616 callbacks.lParam = lParam;
2617
2618 return NLS_EnumLanguageGroupLocales( pLangGrpLcEnumProc ? &callbacks : NULL );
2619 }
2620
2621 /* Callback function ptrs for EnumSystemCodePagesA/W */
2622 typedef struct
2623 {
2624 CODEPAGE_ENUMPROCA procA;
2625 CODEPAGE_ENUMPROCW procW;
2626 DWORD dwFlags;
2627 } ENUMSYSTEMCODEPAGES_CALLBACKS;
2628
2629 /* Internal implementation of EnumSystemCodePagesA/W */
2630 static BOOL NLS_EnumSystemCodePages(ENUMSYSTEMCODEPAGES_CALLBACKS *lpProcs)
2631 {
2632 WCHAR szNumber[5 + 1], szValue[MAX_PATH];
2633 HANDLE hKey;
2634 BOOL bContinue = TRUE;
2635 ULONG ulIndex = 0;
2636
2637 if (!lpProcs)
2638 {
2639 SetLastError(ERROR_INVALID_PARAMETER);
2640 return FALSE;
2641 }
2642
2643 switch (lpProcs->dwFlags)
2644 {
2645 case CP_INSTALLED:
2646 case CP_SUPPORTED:
2647 break;
2648 default:
2649 SetLastError(ERROR_INVALID_FLAGS);
2650 return FALSE;
2651 }
2652
2653 hKey = NLS_RegOpenKey(0, L"\\Registry\\Machine\\SYSTEM\\CurrentControlSet\\Control\\NLS\\CodePage");
2654 if (!hKey)
2655 {
2656 WARN("NLS_RegOpenKey() failed\n");
2657 return FALSE;
2658 }
2659
2660 while (bContinue)
2661 {
2662 if (NLS_RegEnumValue(hKey, ulIndex, szNumber, sizeof(szNumber),
2663 szValue, sizeof(szValue)))
2664 {
2665 if ((lpProcs->dwFlags == CP_SUPPORTED)||
2666 ((lpProcs->dwFlags == CP_INSTALLED)&&(wcslen(szValue) > 2)))
2667 {
2668 if (lpProcs->procW)
2669 {
2670 bContinue = lpProcs->procW(szNumber);
2671 }
2672 else
2673 {
2674 char szNumberA[sizeof(szNumber)/sizeof(WCHAR)];
2675
2676 WideCharToMultiByte(CP_ACP, 0, szNumber, -1, szNumberA, sizeof(szNumberA), 0, 0);
2677 bContinue = lpProcs->procA(szNumberA);
2678 }
2679 }
2680
2681 ulIndex++;
2682
2683 } else bContinue = FALSE;
2684
2685 if (!bContinue)
2686 break;
2687 }
2688
2689 if (hKey)
2690 NtClose(hKey);
2691
2692 return TRUE;
2693 }
2694
2695 /*
2696 * @implemented
2697 */
2698 BOOL
2699 WINAPI
2700 EnumSystemCodePagesW (
2701 CODEPAGE_ENUMPROCW lpCodePageEnumProc,
2702 DWORD dwFlags
2703 )
2704 {
2705 ENUMSYSTEMCODEPAGES_CALLBACKS procs;
2706
2707 TRACE("(%p,0x%08X,0x%08lX)\n", lpCodePageEnumProc, dwFlags);
2708
2709 procs.procA = NULL;
2710 procs.procW = lpCodePageEnumProc;
2711 procs.dwFlags = dwFlags;
2712
2713 return NLS_EnumSystemCodePages(lpCodePageEnumProc ? &procs : NULL);
2714 }
2715
2716
2717 /*
2718 * @implemented
2719 */
2720 BOOL
2721 WINAPI
2722 EnumSystemCodePagesA (
2723 CODEPAGE_ENUMPROCA lpCodePageEnumProc,
2724 DWORD dwFlags
2725 )
2726 {
2727 ENUMSYSTEMCODEPAGES_CALLBACKS procs;
2728
2729 TRACE("(%p,0x%08X,0x%08lX)\n", lpCodePageEnumProc, dwFlags);
2730
2731 procs.procA = lpCodePageEnumProc;
2732 procs.procW = NULL;
2733 procs.dwFlags = dwFlags;
2734
2735 return NLS_EnumSystemCodePages(lpCodePageEnumProc ? &procs : NULL);
2736 }
2737
2738 /******************************************************************************
2739 * EnumSystemGeoID (KERNEL32.@)
2740 *
2741 * Call a users function for every location available on the system.
2742 *
2743 * PARAMS
2744 * geoclass [I] Type of information desired (SYSGEOTYPE enum from "winnls.h")
2745 * parent [I] GEOID for the parent
2746 * enumproc [I] Callback function to call for each location
2747 *
2748 * RETURNS
2749 * Success: TRUE.
2750 * Failure: FALSE. Use GetLastError() to determine the cause.
2751 */
2752 BOOL WINAPI EnumSystemGeoID(GEOCLASS geoclass, GEOID parent, GEO_ENUMPROC enumproc)
2753 {
2754 INT i;
2755
2756 TRACE("(%d, %d, %p)\n", geoclass, parent, enumproc);
2757
2758 if (!enumproc) {
2759 SetLastError(ERROR_INVALID_PARAMETER);
2760 return FALSE;
2761 }
2762
2763 if (geoclass != GEOCLASS_NATION && geoclass != GEOCLASS_REGION) {
2764 SetLastError(ERROR_INVALID_FLAGS);
2765 return FALSE;
2766 }
2767
2768 for (i = 0; i < sizeof(geoinfodata)/sizeof(struct geoinfo_t); i++) {
2769 const struct geoinfo_t *ptr = &geoinfodata[i];
2770
2771 if (geoclass == GEOCLASS_NATION && (ptr->kind == LOCATION_REGION))
2772 continue;
2773
2774 if (geoclass == GEOCLASS_REGION && (ptr->kind == LOCATION_NATION))
2775 continue;
2776
2777 if (parent && ptr->parent != parent)
2778 continue;
2779
2780 if (!enumproc(ptr->id))
2781 return TRUE;
2782 }
2783
2784 return TRUE;
2785 }
2786
2787 /******************************************************************************
2788 * InvalidateNLSCache (KERNEL32.@)
2789 *
2790 * Invalidate the cache of NLS values.
2791 *
2792 * PARAMS
2793 * None.
2794 *
2795 * RETURNS
2796 * Success: TRUE.
2797 * Failure: FALSE.
2798 */
2799 BOOL WINAPI InvalidateNLSCache(void)
2800 {
2801 FIXME("() stub\n");
2802 return FALSE;
2803 }
2804
2805 /******************************************************************************
2806 * GetUserGeoID (KERNEL32.@)
2807 */
2808 GEOID WINAPI GetUserGeoID( GEOCLASS GeoClass )
2809 {
2810 GEOID ret = GEOID_NOT_AVAILABLE;
2811 static const WCHAR geoW[] = {'G','e','o',0};
2812 static const WCHAR nationW[] = {'N','a','t','i','o','n',0};
2813 WCHAR bufferW[40], *end;
2814 DWORD count;
2815 HANDLE hkey, hSubkey = 0;
2816 UNICODE_STRING keyW;
2817 const KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)bufferW;
2818 RtlInitUnicodeString( &keyW, nationW );
2819 count = sizeof(bufferW);
2820
2821 if(!(hkey = create_registry_key())) return ret;
2822
2823 switch( GeoClass ){
2824 case GEOCLASS_NATION:
2825 if ((hSubkey = NLS_RegOpenKey(hkey, geoW)))
2826 {
2827 if((NtQueryValueKey(hSubkey, &keyW, KeyValuePartialInformation,
2828 bufferW, count, &count) == STATUS_SUCCESS ) && info->DataLength)
2829 ret = strtolW((LPCWSTR)info->Data, &end, 10);
2830 }
2831 break;
2832 case GEOCLASS_REGION:
2833 FIXME("GEOCLASS_REGION not handled yet\n");
2834 break;
2835 }
2836
2837 NtClose(hkey);
2838 if (hSubkey) NtClose(hSubkey);
2839 return ret;
2840 }
2841
2842 /******************************************************************************
2843 * SetUserGeoID (KERNEL32.@)
2844 */
2845 BOOL WINAPI SetUserGeoID( GEOID GeoID )
2846 {
2847 static const WCHAR geoW[] = {'G','e','o',0};
2848 static const WCHAR nationW[] = {'N','a','t','i','o','n',0};
2849 static const WCHAR formatW[] = {'%','i',0};
2850 UNICODE_STRING nameW,keyW;
2851 WCHAR bufferW[10];
2852 OBJECT_ATTRIBUTES attr;
2853 HANDLE hkey;
2854
2855 if(!(hkey = create_registry_key())) return FALSE;
2856
2857 attr.Length = sizeof(attr);
2858 attr.RootDirectory = hkey;
2859 attr.ObjectName = &nameW;
2860 attr.Attributes = 0;
2861 attr.SecurityDescriptor = NULL;
2862 attr.SecurityQualityOfService = NULL;
2863 RtlInitUnicodeString( &nameW, geoW );
2864 RtlInitUnicodeString( &keyW, nationW );
2865
2866 if (NtCreateKey( &hkey, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL ) != STATUS_SUCCESS)
2867
2868 {
2869 NtClose(attr.RootDirectory);
2870 return FALSE;
2871 }
2872
2873 sprintfW(bufferW, formatW, GeoID);
2874 NtSetValueKey(hkey, &keyW, 0, REG_SZ, bufferW, (strlenW(bufferW) + 1) * sizeof(WCHAR));
2875 NtClose(attr.RootDirectory);
2876 NtClose(hkey);
2877 return TRUE;
2878 }
2879
2880 typedef struct
2881 {
2882 union
2883 {
2884 UILANGUAGE_ENUMPROCA procA;
2885 UILANGUAGE_ENUMPROCW procW;
2886 } u;
2887 DWORD flags;
2888 LONG_PTR param;
2889 } ENUM_UILANG_CALLBACK;
2890
2891 static BOOL CALLBACK enum_uilang_proc_a( HMODULE hModule, LPCSTR type,
2892 LPCSTR name, WORD LangID, LONG_PTR lParam )
2893 {
2894 ENUM_UILANG_CALLBACK *enum_uilang = (ENUM_UILANG_CALLBACK *)lParam;
2895 char buf[20];
2896
2897 sprintf(buf, "%08x", (UINT)LangID);
2898 return enum_uilang->u.procA( buf, enum_uilang->param );
2899 }
2900
2901 static BOOL CALLBACK enum_uilang_proc_w( HMODULE hModule, LPCWSTR type,
2902 LPCWSTR name, WORD LangID, LONG_PTR lParam )
2903 {
2904 static const WCHAR formatW[] = {'%','0','8','x',0};
2905 ENUM_UILANG_CALLBACK *enum_uilang = (ENUM_UILANG_CALLBACK *)lParam;
2906 WCHAR buf[20];
2907
2908 sprintfW( buf, formatW, (UINT)LangID );
2909 return enum_uilang->u.procW( buf, enum_uilang->param );
2910 }
2911
2912 /******************************************************************************
2913 * EnumUILanguagesA (KERNEL32.@)
2914 */
2915 BOOL WINAPI EnumUILanguagesA(UILANGUAGE_ENUMPROCA pUILangEnumProc, DWORD dwFlags, LONG_PTR lParam)
2916 {
2917 ENUM_UILANG_CALLBACK enum_uilang;
2918
2919 TRACE("%p, %x, %lx\n", pUILangEnumProc, dwFlags, lParam);
2920
2921 if(!pUILangEnumProc) {
2922 SetLastError(ERROR_INVALID_PARAMETER);
2923 return FALSE;
2924 }
2925 if(dwFlags) {
2926 SetLastError(ERROR_INVALID_FLAGS);
2927 return FALSE;
2928 }
2929
2930 enum_uilang.u.procA = pUILangEnumProc;
2931 enum_uilang.flags = dwFlags;
2932 enum_uilang.param = lParam;
2933
2934 EnumResourceLanguagesA( kernel32_handle, (LPCSTR)RT_STRING,
2935 (LPCSTR)LOCALE_ILANGUAGE, enum_uilang_proc_a,
2936 (LONG_PTR)&enum_uilang);
2937 return TRUE;
2938 }
2939
2940 /******************************************************************************
2941 * EnumUILanguagesW (KERNEL32.@)
2942 */
2943 BOOL WINAPI EnumUILanguagesW(UILANGUAGE_ENUMPROCW pUILangEnumProc, DWORD dwFlags, LONG_PTR lParam)
2944 {
2945 ENUM_UILANG_CALLBACK enum_uilang;
2946
2947 TRACE("%p, %x, %lx\n", pUILangEnumProc, dwFlags, lParam);
2948
2949
2950 if(!pUILangEnumProc) {
2951 SetLastError(ERROR_INVALID_PARAMETER);
2952 return FALSE;
2953 }
2954 if(dwFlags) {
2955 SetLastError(ERROR_INVALID_FLAGS);
2956 return FALSE;
2957 }
2958
2959 enum_uilang.u.procW = pUILangEnumProc;
2960 enum_uilang.flags = dwFlags;
2961 enum_uilang.param = lParam;
2962
2963 EnumResourceLanguagesW( kernel32_handle, (LPCWSTR)RT_STRING,
2964 (LPCWSTR)LOCALE_ILANGUAGE, enum_uilang_proc_w,
2965 (LONG_PTR)&enum_uilang);
2966 return TRUE;
2967 }
2968
2969 static int
2970 NLS_GetGeoFriendlyName(GEOID Location, LPWSTR szFriendlyName, int cchData)
2971 {
2972 HANDLE hKey;
2973 WCHAR szPath[MAX_PATH];
2974 UNICODE_STRING ValueName;
2975 KEY_VALUE_PARTIAL_INFORMATION *info;
2976 const int info_size = FIELD_OFFSET(KEY_VALUE_PARTIAL_INFORMATION, Data);
2977 DWORD dwSize;
2978 NTSTATUS Status;
2979 int Ret;
2980
2981 swprintf(szPath, L"\\REGISTRY\\Machine\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Telephony\\Country List\\%lu", Location);
2982
2983 hKey = NLS_RegOpenKey(0, szPath);
2984 if (!hKey)
2985 {
2986 WARN("NLS_RegOpenKey() failed\n");
2987 return 0;
2988 }
2989
2990 dwSize = info_size + cchData * sizeof(WCHAR);
2991
2992 if (!(info = HeapAlloc(GetProcessHeap(), 0, dwSize)))
2993 {
2994 NtClose(hKey);
2995 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
2996 return 0;
2997 }
2998
2999 RtlInitUnicodeString(&ValueName, L"Name");
3000
3001 Status = NtQueryValueKey(hKey, &ValueName, KeyValuePartialInformation,
3002 (LPBYTE)info, dwSize, &dwSize);
3003
3004 if (!Status)
3005 {
3006 Ret = (dwSize - info_size) / sizeof(WCHAR);
3007
3008 if (!Ret || ((WCHAR *)info->Data)[Ret-1])
3009 {
3010 if (Ret < cchData || !szFriendlyName) Ret++;
3011 else
3012 {
3013 WARN("ERROR_INSUFFICIENT_BUFFER\n");
3014 SetLastError(ERROR_INSUFFICIENT_BUFFER);
3015 Ret = 0;
3016 }
3017 }
3018
3019 if (Ret && szFriendlyName)
3020 {
3021 memcpy(szFriendlyName, info->Data, (Ret-1) * sizeof(WCHAR));
3022 szFriendlyName[Ret-1] = 0;
3023 }
3024 }
3025 else if (Status == STATUS_BUFFER_OVERFLOW && !szFriendlyName)
3026 {
3027 Ret = (dwSize - info_size) / sizeof(WCHAR) + 1;
3028 }
3029 else if (Status == STATUS_OBJECT_NAME_NOT_FOUND)
3030 {
3031 Ret = -1;
3032 }
3033 else
3034 {
3035 SetLastError(RtlNtStatusToDosError(Status));
3036 Ret = 0;
3037 }
3038
3039 NtClose(hKey);
3040 HeapFree(GetProcessHeap(), 0, info);
3041
3042 return Ret;
3043 }
3044
3045 static const struct geoinfo_t *get_geoinfo_dataptr(GEOID geoid)
3046 {
3047 int min, max;
3048
3049 min = 0;
3050 max = sizeof(geoinfodata)/sizeof(struct geoinfo_t)-1;
3051
3052 while (min <= max) {
3053 const struct geoinfo_t *ptr;
3054 int n = (min+max)/2;
3055
3056 ptr = &geoinfodata[n];
3057 if (geoid == ptr->id)
3058 /* we don't need empty entry */
3059 return *ptr->iso2W ? ptr : NULL;
3060
3061 if (ptr->id > geoid)
3062 max = n-1;
3063 else
3064 min = n+1;
3065 }
3066
3067 return NULL;
3068 }
3069
3070 /******************************************************************************
3071 * GetGeoInfoW (KERNEL32.@)
3072 */
3073 INT WINAPI GetGeoInfoW(GEOID geoid, GEOTYPE geotype, LPWSTR data, int data_len, LANGID lang)
3074 {
3075 const struct geoinfo_t *ptr;
3076 const WCHAR *str = NULL;
3077 WCHAR buffW[12];
3078 LONG val = 0;
3079 INT len;
3080
3081 TRACE("%d %d %p %d %d\n", geoid, geotype, data, data_len, lang);
3082
3083 if (!(ptr = get_geoinfo_dataptr(geoid))) {
3084 SetLastError(ERROR_INVALID_PARAMETER);
3085 return 0;
3086 }
3087
3088 switch (geotype) {
3089 case GEO_FRIENDLYNAME:
3090 {
3091 return NLS_GetGeoFriendlyName(geoid, data, data_len);
3092 }
3093 case GEO_NATION:
3094 val = geoid;
3095 break;
3096 case GEO_ISO_UN_NUMBER:
3097 val = ptr->uncode;
3098 break;
3099 case GEO_PARENT:
3100 val = ptr->parent;
3101 break;
3102 case GEO_ISO2:
3103 case GEO_ISO3:
3104 {
3105 str = geotype == GEO_ISO2 ? ptr->iso2W : ptr->iso3W;
3106 break;
3107 }
3108 case GEO_RFC1766:
3109 case GEO_LCID:
3110 case GEO_OFFICIALNAME:
3111 case GEO_TIMEZONES:
3112 case GEO_OFFICIALLANGUAGES:
3113 case GEO_LATITUDE:
3114 case GEO_LONGITUDE:
3115 FIXME("type %d is not supported\n", geotype);
3116 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3117 return 0;
3118 default:
3119 WARN("unrecognized type %d\n", geotype);
3120 SetLastError(ERROR_INVALID_FLAGS);
3121 return 0;
3122 }
3123
3124 if (val) {
3125 static const WCHAR fmtW[] = {'%','d',0};
3126 sprintfW(buffW, fmtW, val);
3127 str = buffW;
3128 }
3129
3130 len = strlenW(str) + 1;
3131 if (!data || !data_len)
3132 return len;
3133
3134 memcpy(data, str, min(len, data_len)*sizeof(WCHAR));
3135 if (data_len < len)
3136 SetLastError(ERROR_INSUFFICIENT_BUFFER);
3137 return data_len < len ? 0 : len;
3138 }
3139
3140 /******************************************************************************
3141 * GetGeoInfoA (KERNEL32.@)
3142 */
3143 INT WINAPI GetGeoInfoA(GEOID geoid, GEOTYPE geotype, LPSTR data, int data_len, LANGID lang)
3144 {
3145 WCHAR *buffW;
3146 INT len;
3147
3148 TRACE("%d %d %p %d %d\n", geoid, geotype, data, data_len, lang);
3149
3150 len = GetGeoInfoW(geoid, geotype, NULL, 0, lang);
3151 if (!len)
3152 return 0;
3153
3154 buffW = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
3155 if (!buffW)
3156 return 0;
3157
3158 GetGeoInfoW(geoid, geotype, buffW, len, lang);
3159 len = WideCharToMultiByte(CP_ACP, 0, buffW, -1, NULL, 0, NULL, NULL);
3160 if (!data || !data_len) {
3161 HeapFree(GetProcessHeap(), 0, buffW);
3162 return len;
3163 }
3164
3165 len = WideCharToMultiByte(CP_ACP, 0, buffW, -1, data, data_len, NULL, NULL);
3166 HeapFree(GetProcessHeap(), 0, buffW);
3167
3168 if (data_len < len)
3169 SetLastError(ERROR_INSUFFICIENT_BUFFER);
3170 return data_len < len ? 0 : len;
3171 }