[USB-BRINGUP-TRUNK]
[reactos.git] / 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 "config.h"
25 //#include "wine/port.h"
26
27 #include <assert.h>
28 #include <locale.h>
29 #include <string.h>
30 #include <stdarg.h>
31 #include <stdio.h>
32 #include <ctype.h>
33 #include <stdlib.h>
34
35 #include "ntstatus.h"
36 #define WIN32_NO_STATUS
37 #include "windef.h"
38 #include "winbase.h"
39 #include "winuser.h" /* for RT_STRINGW */
40 #include "winternl.h"
41 #include "wine/unicode.h"
42 #include "winnls.h"
43 #include "winerror.h"
44 #include "winver.h"
45 #include "wine/debug.h"
46
47 #include "lcformat_private.h"
48 #define REG_SZ 1
49 extern int wine_fold_string(int flags, const WCHAR *src, int srclen, WCHAR *dst, int dstlen);
50 extern int wine_get_sortkey(int flags, const WCHAR *src, int srclen, char *dst, int dstlen);
51 extern int wine_compare_string(int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2);
52
53 #define HeapAlloc RtlAllocateHeap
54 #define HeapReAlloc RtlReAllocateHeap
55 #define HeapFree RtlFreeHeap
56 WINE_DEFAULT_DEBUG_CHANNEL(nls);
57
58 extern HMODULE kernel32_handle;
59
60 #define LOCALE_LOCALEINFOFLAGSMASK (LOCALE_NOUSEROVERRIDE|LOCALE_USE_CP_ACP|\
61 LOCALE_RETURN_NUMBER|LOCALE_RETURN_GENITIVE_NAMES)
62
63 static const WCHAR szNlsKeyName[] = {
64 'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
65 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
66 'C','o','n','t','r','o','l','\\','N','l','s','\0'
67 };
68
69 static const WCHAR szLocaleKeyName[] = {
70 'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
71 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
72 'C','o','n','t','r','o','l','\\','N','l','s','\\','L','o','c','a','l','e',0
73 };
74
75 static const WCHAR szLangGroupsKeyName[] = {
76 'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
77 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
78 'C','o','n','t','r','o','l','\\','N','l','s','\\',
79 'L','a','n','g','u','a','g','e',' ','G','r','o','u','p','s',0
80 };
81
82 /* Charset to codepage map, sorted by name. */
83 static const struct charset_entry
84 {
85 const char *charset_name;
86 UINT codepage;
87 } charset_names[] =
88 {
89 { "BIG5", 950 },
90 { "CP1250", 1250 },
91 { "CP1251", 1251 },
92 { "CP1252", 1252 },
93 { "CP1253", 1253 },
94 { "CP1254", 1254 },
95 { "CP1255", 1255 },
96 { "CP1256", 1256 },
97 { "CP1257", 1257 },
98 { "CP1258", 1258 },
99 { "CP932", 932 },
100 { "CP936", 936 },
101 { "CP949", 949 },
102 { "CP950", 950 },
103 { "EUCJP", 20932 },
104 { "GB2312", 936 },
105 { "IBM037", 37 },
106 { "IBM1026", 1026 },
107 { "IBM424", 424 },
108 { "IBM437", 437 },
109 { "IBM500", 500 },
110 { "IBM850", 850 },
111 { "IBM852", 852 },
112 { "IBM855", 855 },
113 { "IBM857", 857 },
114 { "IBM860", 860 },
115 { "IBM861", 861 },
116 { "IBM862", 862 },
117 { "IBM863", 863 },
118 { "IBM864", 864 },
119 { "IBM865", 865 },
120 { "IBM866", 866 },
121 { "IBM869", 869 },
122 { "IBM874", 874 },
123 { "IBM875", 875 },
124 { "ISO88591", 28591 },
125 { "ISO885910", 28600 },
126 { "ISO885913", 28603 },
127 { "ISO885914", 28604 },
128 { "ISO885915", 28605 },
129 { "ISO885916", 28606 },
130 { "ISO88592", 28592 },
131 { "ISO88593", 28593 },
132 { "ISO88594", 28594 },
133 { "ISO88595", 28595 },
134 { "ISO88596", 28596 },
135 { "ISO88597", 28597 },
136 { "ISO88598", 28598 },
137 { "ISO88599", 28599 },
138 { "KOI8R", 20866 },
139 { "KOI8U", 21866 },
140 { "UTF8", CP_UTF8 }
141 };
142
143
144 struct locale_name
145 {
146 WCHAR win_name[128]; /* Windows name ("en-US") */
147 WCHAR lang[128]; /* language ("en") (note: buffer contains the other strings too) */
148 WCHAR *country; /* country ("US") */
149 WCHAR *charset; /* charset ("UTF-8") for Unix format only */
150 WCHAR *script; /* script ("Latn") for Windows format only */
151 WCHAR *modifier; /* modifier or sort order */
152 LCID lcid; /* corresponding LCID */
153 int matches; /* number of elements matching LCID (0..4) */
154 UINT codepage; /* codepage corresponding to charset */
155 };
156
157 /* locale ids corresponding to the various Unix locale parameters */
158 static LCID lcid_LC_COLLATE;
159 static LCID lcid_LC_CTYPE;
160 static LCID lcid_LC_MONETARY;
161 static LCID lcid_LC_NUMERIC;
162 static LCID lcid_LC_TIME;
163 static LCID lcid_LC_PAPER;
164 static LCID lcid_LC_MEASUREMENT;
165 static LCID lcid_LC_TELEPHONE;
166
167 /* Copy Ascii string to Unicode without using codepages */
168 static inline void strcpynAtoW( WCHAR *dst, const char *src, size_t n )
169 {
170 while (n > 1 && *src)
171 {
172 *dst++ = (unsigned char)*src++;
173 n--;
174 }
175 if (n) *dst = 0;
176 }
177
178
179 /***********************************************************************
180 * get_lcid_codepage
181 *
182 * Retrieve the ANSI codepage for a given locale.
183 */
184 static inline UINT get_lcid_codepage( LCID lcid )
185 {
186 UINT ret;
187 if (!GetLocaleInfoW( lcid, LOCALE_IDEFAULTANSICODEPAGE|LOCALE_RETURN_NUMBER, (WCHAR *)&ret,
188 sizeof(ret)/sizeof(WCHAR) )) ret = 0;
189 return ret;
190 }
191
192 /***********************************************************************
193 * convert_default_lcid
194 *
195 * Get the default LCID to use for a given lctype in GetLocaleInfo.
196 */
197 static LCID convert_default_lcid( LCID lcid, LCTYPE lctype )
198 {
199 if (lcid == LOCALE_SYSTEM_DEFAULT ||
200 lcid == LOCALE_USER_DEFAULT ||
201 lcid == LOCALE_NEUTRAL)
202 {
203 LCID default_id = 0;
204
205 switch(lctype & 0xffff)
206 {
207 case LOCALE_SSORTNAME:
208 default_id = lcid_LC_COLLATE;
209 break;
210
211 case LOCALE_FONTSIGNATURE:
212 case LOCALE_IDEFAULTANSICODEPAGE:
213 case LOCALE_IDEFAULTCODEPAGE:
214 case LOCALE_IDEFAULTEBCDICCODEPAGE:
215 case LOCALE_IDEFAULTMACCODEPAGE:
216 case LOCALE_IDEFAULTUNIXCODEPAGE:
217 default_id = lcid_LC_CTYPE;
218 break;
219
220 case LOCALE_ICURRDIGITS:
221 case LOCALE_ICURRENCY:
222 case LOCALE_IINTLCURRDIGITS:
223 case LOCALE_INEGCURR:
224 case LOCALE_INEGSEPBYSPACE:
225 case LOCALE_INEGSIGNPOSN:
226 case LOCALE_INEGSYMPRECEDES:
227 case LOCALE_IPOSSEPBYSPACE:
228 case LOCALE_IPOSSIGNPOSN:
229 case LOCALE_IPOSSYMPRECEDES:
230 case LOCALE_SCURRENCY:
231 case LOCALE_SINTLSYMBOL:
232 case LOCALE_SMONDECIMALSEP:
233 case LOCALE_SMONGROUPING:
234 case LOCALE_SMONTHOUSANDSEP:
235 case LOCALE_SNATIVECURRNAME:
236 default_id = lcid_LC_MONETARY;
237 break;
238
239 case LOCALE_IDIGITS:
240 case LOCALE_IDIGITSUBSTITUTION:
241 case LOCALE_ILZERO:
242 case LOCALE_INEGNUMBER:
243 case LOCALE_SDECIMAL:
244 case LOCALE_SGROUPING:
245 //case LOCALE_SNAN:
246 case LOCALE_SNATIVEDIGITS:
247 case LOCALE_SNEGATIVESIGN:
248 //case LOCALE_SNEGINFINITY:
249 //case LOCALE_SPOSINFINITY:
250 case LOCALE_SPOSITIVESIGN:
251 case LOCALE_STHOUSAND:
252 default_id = lcid_LC_NUMERIC;
253 break;
254
255 case LOCALE_ICALENDARTYPE:
256 case LOCALE_ICENTURY:
257 case LOCALE_IDATE:
258 case LOCALE_IDAYLZERO:
259 case LOCALE_IFIRSTDAYOFWEEK:
260 case LOCALE_IFIRSTWEEKOFYEAR:
261 case LOCALE_ILDATE:
262 case LOCALE_IMONLZERO:
263 case LOCALE_IOPTIONALCALENDAR:
264 case LOCALE_ITIME:
265 case LOCALE_ITIMEMARKPOSN:
266 case LOCALE_ITLZERO:
267 case LOCALE_S1159:
268 case LOCALE_S2359:
269 case LOCALE_SABBREVDAYNAME1:
270 case LOCALE_SABBREVDAYNAME2:
271 case LOCALE_SABBREVDAYNAME3:
272 case LOCALE_SABBREVDAYNAME4:
273 case LOCALE_SABBREVDAYNAME5:
274 case LOCALE_SABBREVDAYNAME6:
275 case LOCALE_SABBREVDAYNAME7:
276 case LOCALE_SABBREVMONTHNAME1:
277 case LOCALE_SABBREVMONTHNAME2:
278 case LOCALE_SABBREVMONTHNAME3:
279 case LOCALE_SABBREVMONTHNAME4:
280 case LOCALE_SABBREVMONTHNAME5:
281 case LOCALE_SABBREVMONTHNAME6:
282 case LOCALE_SABBREVMONTHNAME7:
283 case LOCALE_SABBREVMONTHNAME8:
284 case LOCALE_SABBREVMONTHNAME9:
285 case LOCALE_SABBREVMONTHNAME10:
286 case LOCALE_SABBREVMONTHNAME11:
287 case LOCALE_SABBREVMONTHNAME12:
288 case LOCALE_SABBREVMONTHNAME13:
289 case LOCALE_SDATE:
290 case LOCALE_SDAYNAME1:
291 case LOCALE_SDAYNAME2:
292 case LOCALE_SDAYNAME3:
293 case LOCALE_SDAYNAME4:
294 case LOCALE_SDAYNAME5:
295 case LOCALE_SDAYNAME6:
296 case LOCALE_SDAYNAME7:
297 //case LOCALE_SDURATION:
298 case LOCALE_SLONGDATE:
299 case LOCALE_SMONTHNAME1:
300 case LOCALE_SMONTHNAME2:
301 case LOCALE_SMONTHNAME3:
302 case LOCALE_SMONTHNAME4:
303 case LOCALE_SMONTHNAME5:
304 case LOCALE_SMONTHNAME6:
305 case LOCALE_SMONTHNAME7:
306 case LOCALE_SMONTHNAME8:
307 case LOCALE_SMONTHNAME9:
308 case LOCALE_SMONTHNAME10:
309 case LOCALE_SMONTHNAME11:
310 case LOCALE_SMONTHNAME12:
311 case LOCALE_SMONTHNAME13:
312 case LOCALE_SSHORTDATE:
313 //case LOCALE_SSHORTESTDAYNAME1:
314 //case LOCALE_SSHORTESTDAYNAME2:
315 //case LOCALE_SSHORTESTDAYNAME3:
316 //case LOCALE_SSHORTESTDAYNAME4:
317 //case LOCALE_SSHORTESTDAYNAME5:
318 //case LOCALE_SSHORTESTDAYNAME6:
319 //case LOCALE_SSHORTESTDAYNAME7:
320 case LOCALE_STIME:
321 case LOCALE_STIMEFORMAT:
322 case LOCALE_SYEARMONTH:
323 default_id = lcid_LC_TIME;
324 break;
325
326 case LOCALE_IPAPERSIZE:
327 default_id = lcid_LC_PAPER;
328 break;
329
330 case LOCALE_IMEASURE:
331 default_id = lcid_LC_MEASUREMENT;
332 break;
333
334 case LOCALE_ICOUNTRY:
335 default_id = lcid_LC_TELEPHONE;
336 break;
337 }
338 if (default_id) lcid = default_id;
339 }
340 return ConvertDefaultLocale( lcid );
341 }
342
343 /***********************************************************************
344 * is_genitive_name_supported
345 *
346 * Determine could LCTYPE basically support genitive name form or not.
347 */
348 static BOOL is_genitive_name_supported( LCTYPE lctype )
349 {
350 switch(lctype & 0xffff)
351 {
352 case LOCALE_SMONTHNAME1:
353 case LOCALE_SMONTHNAME2:
354 case LOCALE_SMONTHNAME3:
355 case LOCALE_SMONTHNAME4:
356 case LOCALE_SMONTHNAME5:
357 case LOCALE_SMONTHNAME6:
358 case LOCALE_SMONTHNAME7:
359 case LOCALE_SMONTHNAME8:
360 case LOCALE_SMONTHNAME9:
361 case LOCALE_SMONTHNAME10:
362 case LOCALE_SMONTHNAME11:
363 case LOCALE_SMONTHNAME12:
364 case LOCALE_SMONTHNAME13:
365 return TRUE;
366 default:
367 return FALSE;
368 }
369 }
370
371 /***********************************************************************
372 * create_registry_key
373 *
374 * Create the Control Panel\\International registry key.
375 */
376 static inline HANDLE create_registry_key(void)
377 {
378 static const WCHAR cplW[] = {'C','o','n','t','r','o','l',' ','P','a','n','e','l',0};
379 static const WCHAR intlW[] = {'I','n','t','e','r','n','a','t','i','o','n','a','l',0};
380 OBJECT_ATTRIBUTES attr;
381 UNICODE_STRING nameW;
382 HANDLE cpl_key, hkey = 0;
383
384 if (RtlOpenCurrentUser( KEY_ALL_ACCESS, &hkey ) != STATUS_SUCCESS) return 0;
385
386 attr.Length = sizeof(attr);
387 attr.RootDirectory = hkey;
388 attr.ObjectName = &nameW;
389 attr.Attributes = 0;
390 attr.SecurityDescriptor = NULL;
391 attr.SecurityQualityOfService = NULL;
392 RtlInitUnicodeString( &nameW, cplW );
393
394 if (!NtCreateKey( &cpl_key, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL ))
395 {
396 NtClose( attr.RootDirectory );
397 attr.RootDirectory = cpl_key;
398 RtlInitUnicodeString( &nameW, intlW );
399 if (NtCreateKey( &hkey, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL )) hkey = 0;
400 }
401 NtClose( attr.RootDirectory );
402 return hkey;
403 }
404
405 /***********************************************************************
406 * GetUserDefaultLangID (KERNEL32.@)
407 *
408 * Get the default language Id for the current user.
409 *
410 * PARAMS
411 * None.
412 *
413 * RETURNS
414 * The current LANGID of the default language for the current user.
415 */
416 LANGID WINAPI GetUserDefaultLangID(void)
417 {
418 return LANGIDFROMLCID(GetUserDefaultLCID());
419 }
420
421
422 /***********************************************************************
423 * GetSystemDefaultLangID (KERNEL32.@)
424 *
425 * Get the default language Id for the system.
426 *
427 * PARAMS
428 * None.
429 *
430 * RETURNS
431 * The current LANGID of the default language for the system.
432 */
433 LANGID WINAPI GetSystemDefaultLangID(void)
434 {
435 return LANGIDFROMLCID(GetSystemDefaultLCID());
436 }
437
438
439 /***********************************************************************
440 * GetUserDefaultLCID (KERNEL32.@)
441 *
442 * Get the default locale Id for the current user.
443 *
444 * PARAMS
445 * None.
446 *
447 * RETURNS
448 * The current LCID of the default locale for the current user.
449 */
450 LCID WINAPI GetUserDefaultLCID(void)
451 {
452 LCID lcid;
453 NtQueryDefaultLocale( TRUE, &lcid );
454 return lcid;
455 }
456
457
458 /***********************************************************************
459 * GetSystemDefaultLCID (KERNEL32.@)
460 *
461 * Get the default locale Id for the system.
462 *
463 * PARAMS
464 * None.
465 *
466 * RETURNS
467 * The current LCID of the default locale for the system.
468 */
469 LCID WINAPI GetSystemDefaultLCID(void)
470 {
471 LCID lcid;
472 NtQueryDefaultLocale( FALSE, &lcid );
473 return lcid;
474 }
475
476
477 /***********************************************************************
478 * GetUserDefaultUILanguage (KERNEL32.@)
479 *
480 * Get the default user interface language Id for the current user.
481 *
482 * PARAMS
483 * None.
484 *
485 * RETURNS
486 * The current LANGID of the default UI language for the current user.
487 */
488 LANGID WINAPI GetUserDefaultUILanguage(void)
489 {
490 LANGID lang;
491 NtQueryDefaultUILanguage( &lang );
492 return lang;
493 }
494
495
496 /***********************************************************************
497 * GetSystemDefaultUILanguage (KERNEL32.@)
498 *
499 * Get the default user interface language Id for the system.
500 *
501 * PARAMS
502 * None.
503 *
504 * RETURNS
505 * The current LANGID of the default UI language for the system. This is
506 * typically the same language used during the installation process.
507 */
508 LANGID WINAPI GetSystemDefaultUILanguage(void)
509 {
510 LANGID lang;
511 NtQueryInstallUILanguage( &lang );
512 return lang;
513 }
514
515 /******************************************************************************
516 * get_locale_value_name
517 *
518 * Gets the registry value name for a given lctype.
519 */
520 static const WCHAR *get_locale_value_name( DWORD lctype )
521 {
522 static const WCHAR iCalendarTypeW[] = {'i','C','a','l','e','n','d','a','r','T','y','p','e',0};
523 static const WCHAR iCountryW[] = {'i','C','o','u','n','t','r','y',0};
524 static const WCHAR iCurrDigitsW[] = {'i','C','u','r','r','D','i','g','i','t','s',0};
525 static const WCHAR iCurrencyW[] = {'i','C','u','r','r','e','n','c','y',0};
526 static const WCHAR iDateW[] = {'i','D','a','t','e',0};
527 static const WCHAR iDigitsW[] = {'i','D','i','g','i','t','s',0};
528 static const WCHAR iFirstDayOfWeekW[] = {'i','F','i','r','s','t','D','a','y','O','f','W','e','e','k',0};
529 static const WCHAR iFirstWeekOfYearW[] = {'i','F','i','r','s','t','W','e','e','k','O','f','Y','e','a','r',0};
530 static const WCHAR iLDateW[] = {'i','L','D','a','t','e',0};
531 static const WCHAR iLZeroW[] = {'i','L','Z','e','r','o',0};
532 static const WCHAR iMeasureW[] = {'i','M','e','a','s','u','r','e',0};
533 static const WCHAR iNegCurrW[] = {'i','N','e','g','C','u','r','r',0};
534 static const WCHAR iNegNumberW[] = {'i','N','e','g','N','u','m','b','e','r',0};
535 static const WCHAR iPaperSizeW[] = {'i','P','a','p','e','r','S','i','z','e',0};
536 static const WCHAR iTLZeroW[] = {'i','T','L','Z','e','r','o',0};
537 static const WCHAR iTimePrefixW[] = {'i','T','i','m','e','P','r','e','f','i','x',0};
538 static const WCHAR iTimeW[] = {'i','T','i','m','e',0};
539 static const WCHAR s1159W[] = {'s','1','1','5','9',0};
540 static const WCHAR s2359W[] = {'s','2','3','5','9',0};
541 static const WCHAR sCountryW[] = {'s','C','o','u','n','t','r','y',0};
542 static const WCHAR sCurrencyW[] = {'s','C','u','r','r','e','n','c','y',0};
543 static const WCHAR sDateW[] = {'s','D','a','t','e',0};
544 static const WCHAR sDecimalW[] = {'s','D','e','c','i','m','a','l',0};
545 static const WCHAR sGroupingW[] = {'s','G','r','o','u','p','i','n','g',0};
546 static const WCHAR sLanguageW[] = {'s','L','a','n','g','u','a','g','e',0};
547 static const WCHAR sListW[] = {'s','L','i','s','t',0};
548 static const WCHAR sLongDateW[] = {'s','L','o','n','g','D','a','t','e',0};
549 static const WCHAR sMonDecimalSepW[] = {'s','M','o','n','D','e','c','i','m','a','l','S','e','p',0};
550 static const WCHAR sMonGroupingW[] = {'s','M','o','n','G','r','o','u','p','i','n','g',0};
551 static const WCHAR sMonThousandSepW[] = {'s','M','o','n','T','h','o','u','s','a','n','d','S','e','p',0};
552 static const WCHAR sNativeDigitsW[] = {'s','N','a','t','i','v','e','D','i','g','i','t','s',0};
553 static const WCHAR sNegativeSignW[] = {'s','N','e','g','a','t','i','v','e','S','i','g','n',0};
554 static const WCHAR sPositiveSignW[] = {'s','P','o','s','i','t','i','v','e','S','i','g','n',0};
555 static const WCHAR sShortDateW[] = {'s','S','h','o','r','t','D','a','t','e',0};
556 static const WCHAR sThousandW[] = {'s','T','h','o','u','s','a','n','d',0};
557 static const WCHAR sTimeFormatW[] = {'s','T','i','m','e','F','o','r','m','a','t',0};
558 static const WCHAR sTimeW[] = {'s','T','i','m','e',0};
559 static const WCHAR sYearMonthW[] = {'s','Y','e','a','r','M','o','n','t','h',0};
560 static const WCHAR NumShapeW[] = {'N','u','m','s','h','a','p','e',0};
561
562 switch (lctype)
563 {
564 /* These values are used by SetLocaleInfo and GetLocaleInfo, and
565 * the values are stored in the registry, confirmed under Windows.
566 */
567 case LOCALE_ICALENDARTYPE: return iCalendarTypeW;
568 case LOCALE_ICURRDIGITS: return iCurrDigitsW;
569 case LOCALE_ICURRENCY: return iCurrencyW;
570 case LOCALE_IDIGITS: return iDigitsW;
571 case LOCALE_IFIRSTDAYOFWEEK: return iFirstDayOfWeekW;
572 case LOCALE_IFIRSTWEEKOFYEAR: return iFirstWeekOfYearW;
573 case LOCALE_ILZERO: return iLZeroW;
574 case LOCALE_IMEASURE: return iMeasureW;
575 case LOCALE_INEGCURR: return iNegCurrW;
576 case LOCALE_INEGNUMBER: return iNegNumberW;
577 case LOCALE_IPAPERSIZE: return iPaperSizeW;
578 case LOCALE_ITIME: return iTimeW;
579 case LOCALE_S1159: return s1159W;
580 case LOCALE_S2359: return s2359W;
581 case LOCALE_SCURRENCY: return sCurrencyW;
582 case LOCALE_SDATE: return sDateW;
583 case LOCALE_SDECIMAL: return sDecimalW;
584 case LOCALE_SGROUPING: return sGroupingW;
585 case LOCALE_SLIST: return sListW;
586 case LOCALE_SLONGDATE: return sLongDateW;
587 case LOCALE_SMONDECIMALSEP: return sMonDecimalSepW;
588 case LOCALE_SMONGROUPING: return sMonGroupingW;
589 case LOCALE_SMONTHOUSANDSEP: return sMonThousandSepW;
590 case LOCALE_SNEGATIVESIGN: return sNegativeSignW;
591 case LOCALE_SPOSITIVESIGN: return sPositiveSignW;
592 case LOCALE_SSHORTDATE: return sShortDateW;
593 case LOCALE_STHOUSAND: return sThousandW;
594 case LOCALE_STIME: return sTimeW;
595 case LOCALE_STIMEFORMAT: return sTimeFormatW;
596 case LOCALE_SYEARMONTH: return sYearMonthW;
597
598 /* The following are not listed under MSDN as supported,
599 * but seem to be used and also stored in the registry.
600 */
601 case LOCALE_ICOUNTRY: return iCountryW;
602 case LOCALE_IDATE: return iDateW;
603 case LOCALE_ILDATE: return iLDateW;
604 case LOCALE_ITLZERO: return iTLZeroW;
605 case LOCALE_SCOUNTRY: return sCountryW;
606 case LOCALE_SABBREVLANGNAME: return sLanguageW;
607
608 /* The following are used in XP and later */
609 case LOCALE_IDIGITSUBSTITUTION: return NumShapeW;
610 case LOCALE_SNATIVEDIGITS: return sNativeDigitsW;
611 case LOCALE_ITIMEMARKPOSN: return iTimePrefixW;
612 }
613 return NULL;
614 }
615
616
617 /******************************************************************************
618 * get_registry_locale_info
619 *
620 * Retrieve user-modified locale info from the registry.
621 * Return length, 0 on error, -1 if not found.
622 */
623 static INT get_registry_locale_info( LPCWSTR value, LPWSTR buffer, INT len )
624 {
625 DWORD size;
626 INT ret;
627 HANDLE hkey;
628 NTSTATUS status;
629 UNICODE_STRING nameW;
630 KEY_VALUE_PARTIAL_INFORMATION *info;
631 static const int info_size = FIELD_OFFSET(KEY_VALUE_PARTIAL_INFORMATION, Data);
632
633 if (!(hkey = create_registry_key())) return -1;
634
635 RtlInitUnicodeString( &nameW, value );
636 size = info_size + len * sizeof(WCHAR);
637
638 if (!(info = HeapAlloc( GetProcessHeap(), 0, size )))
639 {
640 NtClose( hkey );
641 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
642 return 0;
643 }
644
645 status = NtQueryValueKey( hkey, &nameW, KeyValuePartialInformation, info, size, &size );
646
647 if (!status)
648 {
649 ret = (size - info_size) / sizeof(WCHAR);
650 /* append terminating null if needed */
651 if (!ret || ((WCHAR *)info->Data)[ret-1])
652 {
653 if (ret < len || !buffer) ret++;
654 else
655 {
656 SetLastError( ERROR_INSUFFICIENT_BUFFER );
657 ret = 0;
658 }
659 }
660 if (ret && buffer)
661 {
662 memcpy( buffer, info->Data, (ret-1) * sizeof(WCHAR) );
663 buffer[ret-1] = 0;
664 }
665 }
666 else if (status == STATUS_BUFFER_OVERFLOW && !buffer)
667 {
668 ret = (size - info_size) / sizeof(WCHAR) + 1;
669 }
670 else if (status == STATUS_OBJECT_NAME_NOT_FOUND)
671 {
672 ret = -1;
673 }
674 else
675 {
676 SetLastError( RtlNtStatusToDosError(status) );
677 ret = 0;
678 }
679 NtClose( hkey );
680 HeapFree( GetProcessHeap(), 0, info );
681 return ret;
682 }
683
684
685 /******************************************************************************
686 * GetLocaleInfoA (KERNEL32.@)
687 *
688 * Get information about an aspect of a locale.
689 *
690 * PARAMS
691 * lcid [I] LCID of the locale
692 * lctype [I] LCTYPE_ flags from "winnls.h"
693 * buffer [O] Destination for the information
694 * len [I] Length of buffer in characters
695 *
696 * RETURNS
697 * Success: The size of the data requested. If buffer is non-NULL, it is filled
698 * with the information.
699 * Failure: 0. Use GetLastError() to determine the cause.
700 *
701 * NOTES
702 * - LOCALE_NEUTRAL is equal to LOCALE_SYSTEM_DEFAULT
703 * - The string returned is NUL terminated, except for LOCALE_FONTSIGNATURE,
704 * which is a bit string.
705 */
706 INT WINAPI GetLocaleInfoA( LCID lcid, LCTYPE lctype, LPSTR buffer, INT len )
707 {
708 WCHAR *bufferW;
709 INT lenW, ret;
710
711 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d)\n", lcid, lctype, buffer, len );
712
713 if (len < 0 || (len && !buffer))
714 {
715 SetLastError( ERROR_INVALID_PARAMETER );
716 return 0;
717 }
718 if (lctype & LOCALE_RETURN_GENITIVE_NAMES )
719 {
720 SetLastError( ERROR_INVALID_FLAGS );
721 return 0;
722 }
723
724 if (!len) buffer = NULL;
725
726 if (!(lenW = GetLocaleInfoW( lcid, lctype, NULL, 0 ))) return 0;
727
728 if (!(bufferW = HeapAlloc( GetProcessHeap(), 0, lenW * sizeof(WCHAR) )))
729 {
730 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
731 return 0;
732 }
733 if ((ret = GetLocaleInfoW( lcid, lctype, bufferW, lenW )))
734 {
735 if ((lctype & LOCALE_RETURN_NUMBER) ||
736 ((lctype & ~LOCALE_LOCALEINFOFLAGSMASK) == LOCALE_FONTSIGNATURE))
737 {
738 /* it's not an ASCII string, just bytes */
739 ret *= sizeof(WCHAR);
740 if (buffer)
741 {
742 if (ret <= len) memcpy( buffer, bufferW, ret );
743 else
744 {
745 SetLastError( ERROR_INSUFFICIENT_BUFFER );
746 ret = 0;
747 }
748 }
749 }
750 else
751 {
752 UINT codepage = CP_ACP;
753 if (!(lctype & LOCALE_USE_CP_ACP)) codepage = get_lcid_codepage( lcid );
754 ret = WideCharToMultiByte( codepage, 0, bufferW, ret, buffer, len, NULL, NULL );
755 }
756 }
757 HeapFree( GetProcessHeap(), 0, bufferW );
758 return ret;
759 }
760
761
762 /******************************************************************************
763 * GetLocaleInfoW (KERNEL32.@)
764 *
765 * See GetLocaleInfoA.
766 */
767 INT WINAPI GetLocaleInfoW( LCID lcid, LCTYPE lctype, LPWSTR buffer, INT len )
768 {
769 LANGID lang_id;
770 HRSRC hrsrc;
771 HGLOBAL hmem;
772 INT ret;
773 UINT lcflags;
774 const WCHAR *p;
775 unsigned int i;
776
777 if (len < 0 || (len && !buffer))
778 {
779 SetLastError( ERROR_INVALID_PARAMETER );
780 return 0;
781 }
782 if (lctype & LOCALE_RETURN_GENITIVE_NAMES &&
783 !is_genitive_name_supported( lctype ))
784 {
785 SetLastError( ERROR_INVALID_FLAGS );
786 return 0;
787 }
788
789 if (!len) buffer = NULL;
790
791 lcid = convert_default_lcid( lcid, lctype );
792
793 lcflags = lctype & LOCALE_LOCALEINFOFLAGSMASK;
794 lctype &= 0xffff;
795
796 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d)\n", lcid, lctype, buffer, len );
797
798 /* first check for overrides in the registry */
799
800 if (!(lcflags & LOCALE_NOUSEROVERRIDE) &&
801 lcid == convert_default_lcid( LOCALE_USER_DEFAULT, lctype ))
802 {
803 const WCHAR *value = get_locale_value_name(lctype);
804
805 if (value)
806 {
807 if (lcflags & LOCALE_RETURN_NUMBER)
808 {
809 WCHAR tmp[16];
810 ret = get_registry_locale_info( value, tmp, sizeof(tmp)/sizeof(WCHAR) );
811 if (ret > 0)
812 {
813 WCHAR *end;
814 UINT number = strtolW( tmp, &end, 10 );
815 if (*end) /* invalid number */
816 {
817 SetLastError( ERROR_INVALID_FLAGS );
818 return 0;
819 }
820 ret = sizeof(UINT)/sizeof(WCHAR);
821 if (!buffer) return ret;
822 if (ret > len)
823 {
824 SetLastError( ERROR_INSUFFICIENT_BUFFER );
825 return 0;
826 }
827 memcpy( buffer, &number, sizeof(number) );
828 }
829 }
830 else ret = get_registry_locale_info( value, buffer, len );
831
832 if (ret != -1) return ret;
833 }
834 }
835
836 /* now load it from kernel resources */
837
838 lang_id = LANGIDFROMLCID( lcid );
839
840 /* replace SUBLANG_NEUTRAL by SUBLANG_DEFAULT */
841 if (SUBLANGID(lang_id) == SUBLANG_NEUTRAL)
842 lang_id = MAKELANGID(PRIMARYLANGID(lang_id), SUBLANG_DEFAULT);
843
844 if (!(hrsrc = FindResourceExW( kernel32_handle, (LPWSTR)RT_STRING,
845 ULongToPtr((lctype >> 4) + 1), lang_id )))
846 {
847 SetLastError( ERROR_INVALID_FLAGS ); /* no such lctype */
848 return 0;
849 }
850 if (!(hmem = LoadResource( kernel32_handle, hrsrc )))
851 return 0;
852
853 p = LockResource( hmem );
854 for (i = 0; i < (lctype & 0x0f); i++) p += *p + 1;
855
856 if (lcflags & LOCALE_RETURN_NUMBER) ret = sizeof(UINT)/sizeof(WCHAR);
857 else if (is_genitive_name_supported( lctype ) && *p)
858 {
859 /* genitive form's stored after a null separator from a nominative */
860 for (i = 1; i <= *p; i++) if (!p[i]) break;
861
862 if (i <= *p && (lcflags & LOCALE_RETURN_GENITIVE_NAMES))
863 {
864 ret = *p - i + 1;
865 p += i;
866 }
867 else ret = i;
868 }
869 else
870 ret = (lctype == LOCALE_FONTSIGNATURE) ? *p : *p + 1;
871
872 if (!buffer) return ret;
873
874 if (ret > len)
875 {
876 SetLastError( ERROR_INSUFFICIENT_BUFFER );
877 return 0;
878 }
879
880 if (lcflags & LOCALE_RETURN_NUMBER)
881 {
882 UINT number;
883 WCHAR *end, *tmp = HeapAlloc( GetProcessHeap(), 0, (*p + 1) * sizeof(WCHAR) );
884 if (!tmp) return 0;
885 memcpy( tmp, p + 1, *p * sizeof(WCHAR) );
886 tmp[*p] = 0;
887 number = strtolW( tmp, &end, 10 );
888 if (!*end)
889 memcpy( buffer, &number, sizeof(number) );
890 else /* invalid number */
891 {
892 SetLastError( ERROR_INVALID_FLAGS );
893 ret = 0;
894 }
895 HeapFree( GetProcessHeap(), 0, tmp );
896
897 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d) returning number %d\n",
898 lcid, lctype, buffer, len, number );
899 }
900 else
901 {
902 memcpy( buffer, p + 1, ret * sizeof(WCHAR) );
903 if (lctype != LOCALE_FONTSIGNATURE) buffer[ret-1] = 0;
904
905 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d) returning %d %s\n",
906 lcid, lctype, buffer, len, ret, debugstr_w(buffer) );
907 }
908 return ret;
909 }
910
911
912 /******************************************************************************
913 * SetLocaleInfoA [KERNEL32.@]
914 *
915 * Set information about an aspect of a locale.
916 *
917 * PARAMS
918 * lcid [I] LCID of the locale
919 * lctype [I] LCTYPE_ flags from "winnls.h"
920 * data [I] Information to set
921 *
922 * RETURNS
923 * Success: TRUE. The information given will be returned by GetLocaleInfoA()
924 * whenever it is called without LOCALE_NOUSEROVERRIDE.
925 * Failure: FALSE. Use GetLastError() to determine the cause.
926 *
927 * NOTES
928 * - Values are only be set for the current user locale; the system locale
929 * settings cannot be changed.
930 * - Any settings changed by this call are lost when the locale is changed by
931 * the control panel (in Wine, this happens every time you change LANG).
932 * - The native implementation of this function does not check that lcid matches
933 * the current user locale, and simply sets the new values. Wine warns you in
934 * this case, but behaves the same.
935 */
936 BOOL WINAPI SetLocaleInfoA(LCID lcid, LCTYPE lctype, LPCSTR data)
937 {
938 UINT codepage = CP_ACP;
939 WCHAR *strW;
940 DWORD len;
941 BOOL ret;
942
943 if (!(lctype & LOCALE_USE_CP_ACP)) codepage = get_lcid_codepage( lcid );
944
945 if (!data)
946 {
947 SetLastError( ERROR_INVALID_PARAMETER );
948 return FALSE;
949 }
950 len = MultiByteToWideChar( codepage, 0, data, -1, NULL, 0 );
951 if (!(strW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) )))
952 {
953 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
954 return FALSE;
955 }
956 MultiByteToWideChar( codepage, 0, data, -1, strW, len );
957 ret = SetLocaleInfoW( lcid, lctype, strW );
958 HeapFree( GetProcessHeap(), 0, strW );
959 return ret;
960 }
961
962
963 /******************************************************************************
964 * SetLocaleInfoW (KERNEL32.@)
965 *
966 * See SetLocaleInfoA.
967 */
968 BOOL WINAPI SetLocaleInfoW( LCID lcid, LCTYPE lctype, LPCWSTR data )
969 {
970 const WCHAR *value;
971 static const WCHAR intlW[] = {'i','n','t','l',0 };
972 UNICODE_STRING valueW;
973 NTSTATUS status;
974 HANDLE hkey;
975
976 lctype &= 0xffff;
977 value = get_locale_value_name( lctype );
978
979 if (!data || !value)
980 {
981 SetLastError( ERROR_INVALID_PARAMETER );
982 return FALSE;
983 }
984
985 if (lctype == LOCALE_IDATE || lctype == LOCALE_ILDATE)
986 {
987 SetLastError( ERROR_INVALID_FLAGS );
988 return FALSE;
989 }
990
991 TRACE("setting %x (%s) to %s\n", lctype, debugstr_w(value), debugstr_w(data) );
992
993 /* FIXME: should check that data to set is sane */
994
995 /* FIXME: profile functions should map to registry */
996 WriteProfileStringW( intlW, value, data );
997
998 if (!(hkey = create_registry_key())) return FALSE;
999 RtlInitUnicodeString( &valueW, value );
1000 status = NtSetValueKey( hkey, &valueW, 0, REG_SZ, data, (strlenW(data)+1)*sizeof(WCHAR) );
1001
1002 if (lctype == LOCALE_SSHORTDATE || lctype == LOCALE_SLONGDATE)
1003 {
1004 /* Set I-value from S value */
1005 WCHAR *lpD, *lpM, *lpY;
1006 WCHAR szBuff[2];
1007
1008 lpD = strrchrW(data, 'd');
1009 lpM = strrchrW(data, 'M');
1010 lpY = strrchrW(data, 'y');
1011
1012 if (lpD <= lpM)
1013 {
1014 szBuff[0] = '1'; /* D-M-Y */
1015 }
1016 else
1017 {
1018 if (lpY <= lpM)
1019 szBuff[0] = '2'; /* Y-M-D */
1020 else
1021 szBuff[0] = '0'; /* M-D-Y */
1022 }
1023
1024 szBuff[1] = '\0';
1025
1026 if (lctype == LOCALE_SSHORTDATE)
1027 lctype = LOCALE_IDATE;
1028 else
1029 lctype = LOCALE_ILDATE;
1030
1031 value = get_locale_value_name( lctype );
1032
1033 WriteProfileStringW( intlW, value, szBuff );
1034
1035 RtlInitUnicodeString( &valueW, value );
1036 status = NtSetValueKey( hkey, &valueW, 0, REG_SZ, szBuff, sizeof(szBuff) );
1037 }
1038
1039 NtClose( hkey );
1040
1041 if (status) SetLastError( RtlNtStatusToDosError(status) );
1042 return !status;
1043 }
1044
1045 /***********************************************************************
1046 * GetThreadLocale (KERNEL32.@)
1047 *
1048 * Get the current threads locale.
1049 *
1050 * PARAMS
1051 * None.
1052 *
1053 * RETURNS
1054 * The LCID currently associated with the calling thread.
1055 */
1056 LCID WINAPI GetThreadLocale(void)
1057 {
1058 LCID ret = NtCurrentTeb()->CurrentLocale;
1059 if (!ret) NtCurrentTeb()->CurrentLocale = ret = GetUserDefaultLCID();
1060 return ret;
1061 }
1062
1063 /**********************************************************************
1064 * SetThreadLocale (KERNEL32.@)
1065 *
1066 * Set the current threads locale.
1067 *
1068 * PARAMS
1069 * lcid [I] LCID of the locale to set
1070 *
1071 * RETURNS
1072 * Success: TRUE. The threads locale is set to lcid.
1073 * Failure: FALSE. Use GetLastError() to determine the cause.
1074 */
1075 BOOL WINAPI SetThreadLocale( LCID lcid )
1076 {
1077 TRACE("(0x%04X)\n", lcid);
1078
1079 lcid = ConvertDefaultLocale(lcid);
1080
1081 if (lcid != GetThreadLocale())
1082 {
1083 if (!IsValidLocale(lcid, LCID_SUPPORTED))
1084 {
1085 SetLastError(ERROR_INVALID_PARAMETER);
1086 return FALSE;
1087 }
1088
1089 NtCurrentTeb()->CurrentLocale = lcid;
1090 }
1091 return TRUE;
1092 }
1093
1094 /******************************************************************************
1095 * ConvertDefaultLocale (KERNEL32.@)
1096 *
1097 * Convert a default locale identifier into a real identifier.
1098 *
1099 * PARAMS
1100 * lcid [I] LCID identifier of the locale to convert
1101 *
1102 * RETURNS
1103 * lcid unchanged, if not a default locale or its sublanguage is
1104 * not SUBLANG_NEUTRAL.
1105 * GetSystemDefaultLCID(), if lcid == LOCALE_SYSTEM_DEFAULT.
1106 * GetUserDefaultLCID(), if lcid == LOCALE_USER_DEFAULT or LOCALE_NEUTRAL.
1107 * Otherwise, lcid with sublanguage changed to SUBLANG_DEFAULT.
1108 */
1109 LCID WINAPI ConvertDefaultLocale( LCID lcid )
1110 {
1111 LANGID langid;
1112
1113 switch (lcid)
1114 {
1115 case LOCALE_SYSTEM_DEFAULT:
1116 lcid = GetSystemDefaultLCID();
1117 break;
1118 case LOCALE_USER_DEFAULT:
1119 case LOCALE_NEUTRAL:
1120 lcid = GetUserDefaultLCID();
1121 break;
1122 default:
1123 /* Replace SUBLANG_NEUTRAL with SUBLANG_DEFAULT */
1124 langid = LANGIDFROMLCID(lcid);
1125 if (SUBLANGID(langid) == SUBLANG_NEUTRAL)
1126 {
1127 langid = MAKELANGID(PRIMARYLANGID(langid), SUBLANG_DEFAULT);
1128 lcid = MAKELCID(langid, SORTIDFROMLCID(lcid));
1129 }
1130 }
1131 return lcid;
1132 }
1133
1134
1135 /******************************************************************************
1136 * IsValidLocale (KERNEL32.@)
1137 *
1138 * Determine if a locale is valid.
1139 *
1140 * PARAMS
1141 * lcid [I] LCID of the locale to check
1142 * flags [I] LCID_SUPPORTED = Valid, LCID_INSTALLED = Valid and installed on the system
1143 *
1144 * RETURNS
1145 * TRUE, if lcid is valid,
1146 * FALSE, otherwise.
1147 *
1148 * NOTES
1149 * Wine does not currently make the distinction between supported and installed. All
1150 * languages supported are installed by default.
1151 */
1152 BOOL WINAPI IsValidLocale( LCID lcid, DWORD flags )
1153 {
1154 /* check if language is registered in the kernel32 resources */
1155 return FindResourceExW( kernel32_handle, (LPWSTR)RT_STRING,
1156 (LPCWSTR)LOCALE_ILANGUAGE, LANGIDFROMLCID(lcid)) != 0;
1157 }
1158
1159
1160 static BOOL CALLBACK enum_lang_proc_a( HMODULE hModule, LPCSTR type,
1161 LPCSTR name, WORD LangID, LONG_PTR lParam )
1162 {
1163 LOCALE_ENUMPROCA lpfnLocaleEnum = (LOCALE_ENUMPROCA)lParam;
1164 char buf[20];
1165
1166 sprintf(buf, "%08x", (UINT)LangID);
1167 return lpfnLocaleEnum( buf );
1168 }
1169
1170 static BOOL CALLBACK enum_lang_proc_w( HMODULE hModule, LPCWSTR type,
1171 LPCWSTR name, WORD LangID, LONG_PTR lParam )
1172 {
1173 static const WCHAR formatW[] = {'%','0','8','x',0};
1174 LOCALE_ENUMPROCW lpfnLocaleEnum = (LOCALE_ENUMPROCW)lParam;
1175 WCHAR buf[20];
1176 sprintfW( buf, formatW, (UINT)LangID );
1177 return lpfnLocaleEnum( buf );
1178 }
1179
1180 /******************************************************************************
1181 * EnumSystemLocalesA (KERNEL32.@)
1182 *
1183 * Call a users function for each locale available on the system.
1184 *
1185 * PARAMS
1186 * lpfnLocaleEnum [I] Callback function to call for each locale
1187 * dwFlags [I] LOCALE_SUPPORTED=All supported, LOCALE_INSTALLED=Installed only
1188 *
1189 * RETURNS
1190 * Success: TRUE.
1191 * Failure: FALSE. Use GetLastError() to determine the cause.
1192 */
1193 BOOL WINAPI EnumSystemLocalesA( LOCALE_ENUMPROCA lpfnLocaleEnum, DWORD dwFlags )
1194 {
1195 TRACE("(%p,%08x)\n", lpfnLocaleEnum, dwFlags);
1196 EnumResourceLanguagesA( kernel32_handle, (LPSTR)RT_STRING,
1197 (LPCSTR)LOCALE_ILANGUAGE, enum_lang_proc_a,
1198 (LONG_PTR)lpfnLocaleEnum);
1199 return TRUE;
1200 }
1201
1202
1203 /******************************************************************************
1204 * EnumSystemLocalesW (KERNEL32.@)
1205 *
1206 * See EnumSystemLocalesA.
1207 */
1208 BOOL WINAPI EnumSystemLocalesW( LOCALE_ENUMPROCW lpfnLocaleEnum, DWORD dwFlags )
1209 {
1210 TRACE("(%p,%08x)\n", lpfnLocaleEnum, dwFlags);
1211 EnumResourceLanguagesW( kernel32_handle, (LPWSTR)RT_STRING,
1212 (LPCWSTR)LOCALE_ILANGUAGE, enum_lang_proc_w,
1213 (LONG_PTR)lpfnLocaleEnum);
1214 return TRUE;
1215 }
1216
1217 /***********************************************************************
1218 * VerLanguageNameA (KERNEL32.@)
1219 *
1220 * Get the name of a language.
1221 *
1222 * PARAMS
1223 * wLang [I] LANGID of the language
1224 * szLang [O] Destination for the language name
1225 *
1226 * RETURNS
1227 * Success: The size of the language name. If szLang is non-NULL, it is filled
1228 * with the name.
1229 * Failure: 0. Use GetLastError() to determine the cause.
1230 *
1231 */
1232 DWORD WINAPI VerLanguageNameA( DWORD wLang, LPSTR szLang, DWORD nSize )
1233 {
1234 return GetLocaleInfoA( MAKELCID(wLang, SORT_DEFAULT), LOCALE_SENGLANGUAGE, szLang, nSize );
1235 }
1236
1237
1238 /***********************************************************************
1239 * VerLanguageNameW (KERNEL32.@)
1240 *
1241 * See VerLanguageNameA.
1242 */
1243 DWORD WINAPI VerLanguageNameW( DWORD wLang, LPWSTR szLang, DWORD nSize )
1244 {
1245 return GetLocaleInfoW( MAKELCID(wLang, SORT_DEFAULT), LOCALE_SENGLANGUAGE, szLang, nSize );
1246 }
1247
1248 /******************************************************************************
1249 * GetStringTypeW (KERNEL32.@)
1250 *
1251 * See GetStringTypeA.
1252 */
1253 BOOL WINAPI GetStringTypeW( DWORD type, LPCWSTR src, INT count, LPWORD chartype )
1254 {
1255 static const unsigned char type2_map[16] =
1256 {
1257 C2_NOTAPPLICABLE, /* unassigned */
1258 C2_LEFTTORIGHT, /* L */
1259 C2_RIGHTTOLEFT, /* R */
1260 C2_EUROPENUMBER, /* EN */
1261 C2_EUROPESEPARATOR, /* ES */
1262 C2_EUROPETERMINATOR, /* ET */
1263 C2_ARABICNUMBER, /* AN */
1264 C2_COMMONSEPARATOR, /* CS */
1265 C2_BLOCKSEPARATOR, /* B */
1266 C2_SEGMENTSEPARATOR, /* S */
1267 C2_WHITESPACE, /* WS */
1268 C2_OTHERNEUTRAL, /* ON */
1269 C2_RIGHTTOLEFT, /* AL */
1270 C2_NOTAPPLICABLE, /* NSM */
1271 C2_NOTAPPLICABLE, /* BN */
1272 C2_OTHERNEUTRAL /* LRE, LRO, RLE, RLO, PDF */
1273 };
1274
1275 if (count == -1) count = strlenW(src) + 1;
1276 switch(type)
1277 {
1278 case CT_CTYPE1:
1279 while (count--) *chartype++ = get_char_typeW( *src++ ) & 0xfff;
1280 break;
1281 case CT_CTYPE2:
1282 while (count--) *chartype++ = type2_map[get_char_typeW( *src++ ) >> 12];
1283 break;
1284 case CT_CTYPE3:
1285 {
1286 WARN("CT_CTYPE3: semi-stub.\n");
1287 while (count--)
1288 {
1289 int c = *src;
1290 WORD type1, type3 = 0; /* C3_NOTAPPLICABLE */
1291
1292 type1 = get_char_typeW( *src++ ) & 0xfff;
1293 /* try to construct type3 from type1 */
1294 if(type1 & C1_SPACE) type3 |= C3_SYMBOL;
1295 if(type1 & C1_ALPHA) type3 |= C3_ALPHA;
1296 if ((c>=0x30A0)&&(c<=0x30FF)) type3 |= C3_KATAKANA;
1297 if ((c>=0x3040)&&(c<=0x309F)) type3 |= C3_HIRAGANA;
1298 if ((c>=0x4E00)&&(c<=0x9FAF)) type3 |= C3_IDEOGRAPH;
1299 if ((c>=0x0600)&&(c<=0x06FF)) type3 |= C3_KASHIDA;
1300 if ((c>=0x3000)&&(c<=0x303F)) type3 |= C3_SYMBOL;
1301
1302 if ((c>=0xFF00)&&(c<=0xFF60)) type3 |= C3_FULLWIDTH;
1303 if ((c>=0xFF00)&&(c<=0xFF20)) type3 |= C3_SYMBOL;
1304 if ((c>=0xFF3B)&&(c<=0xFF40)) type3 |= C3_SYMBOL;
1305 if ((c>=0xFF5B)&&(c<=0xFF60)) type3 |= C3_SYMBOL;
1306 if ((c>=0xFF21)&&(c<=0xFF3A)) type3 |= C3_ALPHA;
1307 if ((c>=0xFF41)&&(c<=0xFF5A)) type3 |= C3_ALPHA;
1308 if ((c>=0xFFE0)&&(c<=0xFFE6)) type3 |= C3_FULLWIDTH;
1309 if ((c>=0xFFE0)&&(c<=0xFFE6)) type3 |= C3_SYMBOL;
1310
1311 if ((c>=0xFF61)&&(c<=0xFFDC)) type3 |= C3_HALFWIDTH;
1312 if ((c>=0xFF61)&&(c<=0xFF64)) type3 |= C3_SYMBOL;
1313 if ((c>=0xFF65)&&(c<=0xFF9F)) type3 |= C3_KATAKANA;
1314 if ((c>=0xFF65)&&(c<=0xFF9F)) type3 |= C3_ALPHA;
1315 if ((c>=0xFFE8)&&(c<=0xFFEE)) type3 |= C3_HALFWIDTH;
1316 if ((c>=0xFFE8)&&(c<=0xFFEE)) type3 |= C3_SYMBOL;
1317 *chartype++ = type3;
1318 }
1319 break;
1320 }
1321 default:
1322 SetLastError( ERROR_INVALID_PARAMETER );
1323 return FALSE;
1324 }
1325 return TRUE;
1326 }
1327
1328
1329 /******************************************************************************
1330 * GetStringTypeExW (KERNEL32.@)
1331 *
1332 * See GetStringTypeExA.
1333 */
1334 BOOL WINAPI GetStringTypeExW( LCID locale, DWORD type, LPCWSTR src, INT count, LPWORD chartype )
1335 {
1336 /* locale is ignored for Unicode */
1337 return GetStringTypeW( type, src, count, chartype );
1338 }
1339
1340
1341 /******************************************************************************
1342 * GetStringTypeA (KERNEL32.@)
1343 *
1344 * Get characteristics of the characters making up a string.
1345 *
1346 * PARAMS
1347 * locale [I] Locale Id for the string
1348 * type [I] CT_CTYPE1 = classification, CT_CTYPE2 = directionality, CT_CTYPE3 = typographic info
1349 * src [I] String to analyse
1350 * count [I] Length of src in chars, or -1 if src is NUL terminated
1351 * chartype [O] Destination for the calculated characteristics
1352 *
1353 * RETURNS
1354 * Success: TRUE. chartype is filled with the requested characteristics of each char
1355 * in src.
1356 * Failure: FALSE. Use GetLastError() to determine the cause.
1357 */
1358 BOOL WINAPI GetStringTypeA( LCID locale, DWORD type, LPCSTR src, INT count, LPWORD chartype )
1359 {
1360 UINT cp;
1361 INT countW;
1362 LPWSTR srcW;
1363 BOOL ret = FALSE;
1364
1365 if(count == -1) count = strlen(src) + 1;
1366
1367 if (!(cp = get_lcid_codepage( locale )))
1368 {
1369 FIXME("For locale %04x using current ANSI code page\n", locale);
1370 cp = GetACP();
1371 }
1372
1373 countW = MultiByteToWideChar(cp, 0, src, count, NULL, 0);
1374 if((srcW = HeapAlloc(GetProcessHeap(), 0, countW * sizeof(WCHAR))))
1375 {
1376 MultiByteToWideChar(cp, 0, src, count, srcW, countW);
1377 /*
1378 * NOTE: the target buffer has 1 word for each CHARACTER in the source
1379 * string, with multibyte characters there maybe be more bytes in count
1380 * than character space in the buffer!
1381 */
1382 ret = GetStringTypeW(type, srcW, countW, chartype);
1383 HeapFree(GetProcessHeap(), 0, srcW);
1384 }
1385 return ret;
1386 }
1387
1388 /******************************************************************************
1389 * GetStringTypeExA (KERNEL32.@)
1390 *
1391 * Get characteristics of the characters making up a string.
1392 *
1393 * PARAMS
1394 * locale [I] Locale Id for the string
1395 * type [I] CT_CTYPE1 = classification, CT_CTYPE2 = directionality, CT_CTYPE3 = typographic info
1396 * src [I] String to analyse
1397 * count [I] Length of src in chars, or -1 if src is NUL terminated
1398 * chartype [O] Destination for the calculated characteristics
1399 *
1400 * RETURNS
1401 * Success: TRUE. chartype is filled with the requested characteristics of each char
1402 * in src.
1403 * Failure: FALSE. Use GetLastError() to determine the cause.
1404 */
1405 BOOL WINAPI GetStringTypeExA( LCID locale, DWORD type, LPCSTR src, INT count, LPWORD chartype )
1406 {
1407 return GetStringTypeA(locale, type, src, count, chartype);
1408 }
1409
1410
1411 /*************************************************************************
1412 * LCMapStringW (KERNEL32.@)
1413 *
1414 * See LCMapStringA.
1415 */
1416 INT WINAPI LCMapStringW(LCID lcid, DWORD flags, LPCWSTR src, INT srclen,
1417 LPWSTR dst, INT dstlen)
1418 {
1419 LPWSTR dst_ptr;
1420
1421 if (!src || !srclen || dstlen < 0)
1422 {
1423 SetLastError(ERROR_INVALID_PARAMETER);
1424 return 0;
1425 }
1426
1427 /* mutually exclusive flags */
1428 if ((flags & (LCMAP_LOWERCASE | LCMAP_UPPERCASE)) == (LCMAP_LOWERCASE | LCMAP_UPPERCASE) ||
1429 (flags & (LCMAP_HIRAGANA | LCMAP_KATAKANA)) == (LCMAP_HIRAGANA | LCMAP_KATAKANA) ||
1430 (flags & (LCMAP_HALFWIDTH | LCMAP_FULLWIDTH)) == (LCMAP_HALFWIDTH | LCMAP_FULLWIDTH) ||
1431 (flags & (LCMAP_TRADITIONAL_CHINESE | LCMAP_SIMPLIFIED_CHINESE)) == (LCMAP_TRADITIONAL_CHINESE | LCMAP_SIMPLIFIED_CHINESE))
1432 {
1433 SetLastError(ERROR_INVALID_FLAGS);
1434 return 0;
1435 }
1436
1437 if (!dstlen) dst = NULL;
1438
1439 lcid = ConvertDefaultLocale(lcid);
1440
1441 if (flags & LCMAP_SORTKEY)
1442 {
1443 INT ret;
1444 if (src == dst)
1445 {
1446 SetLastError(ERROR_INVALID_FLAGS);
1447 return 0;
1448 }
1449
1450 if (srclen < 0) srclen = strlenW(src);
1451
1452 TRACE("(0x%04x,0x%08x,%s,%d,%p,%d)\n",
1453 lcid, flags, debugstr_wn(src, srclen), srclen, dst, dstlen);
1454
1455 ret = wine_get_sortkey(flags, src, srclen, (char *)dst, dstlen);
1456 if (ret == 0)
1457 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1458 else
1459 ret++;
1460 return ret;
1461 }
1462
1463 /* SORT_STRINGSORT must be used exclusively with LCMAP_SORTKEY */
1464 if (flags & SORT_STRINGSORT)
1465 {
1466 SetLastError(ERROR_INVALID_FLAGS);
1467 return 0;
1468 }
1469
1470 if (srclen < 0) srclen = strlenW(src) + 1;
1471
1472 TRACE("(0x%04x,0x%08x,%s,%d,%p,%d)\n",
1473 lcid, flags, debugstr_wn(src, srclen), srclen, dst, dstlen);
1474
1475 if (!dst) /* return required string length */
1476 {
1477 INT len;
1478
1479 for (len = 0; srclen; src++, srclen--)
1480 {
1481 WCHAR wch = *src;
1482 /* tests show that win2k just ignores NORM_IGNORENONSPACE,
1483 * and skips white space and punctuation characters for
1484 * NORM_IGNORESYMBOLS.
1485 */
1486 if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
1487 continue;
1488 len++;
1489 }
1490 return len;
1491 }
1492
1493 if (flags & LCMAP_UPPERCASE)
1494 {
1495 for (dst_ptr = dst; srclen && dstlen; src++, srclen--)
1496 {
1497 WCHAR wch = *src;
1498 if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
1499 continue;
1500 *dst_ptr++ = toupperW(wch);
1501 dstlen--;
1502 }
1503 }
1504 else if (flags & LCMAP_LOWERCASE)
1505 {
1506 for (dst_ptr = dst; srclen && dstlen; src++, srclen--)
1507 {
1508 WCHAR wch = *src;
1509 if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
1510 continue;
1511 *dst_ptr++ = tolowerW(wch);
1512 dstlen--;
1513 }
1514 }
1515 else
1516 {
1517 if (src == dst)
1518 {
1519 SetLastError(ERROR_INVALID_FLAGS);
1520 return 0;
1521 }
1522 for (dst_ptr = dst; srclen && dstlen; src++, srclen--)
1523 {
1524 WCHAR wch = *src;
1525 if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
1526 continue;
1527 *dst_ptr++ = wch;
1528 dstlen--;
1529 }
1530 }
1531
1532 if (srclen)
1533 {
1534 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1535 return 0;
1536 }
1537
1538 return dst_ptr - dst;
1539 }
1540
1541 /*************************************************************************
1542 * LCMapStringA (KERNEL32.@)
1543 *
1544 * Map characters in a locale sensitive string.
1545 *
1546 * PARAMS
1547 * lcid [I] LCID for the conversion.
1548 * flags [I] Flags controlling the mapping (LCMAP_ constants from "winnls.h").
1549 * src [I] String to map
1550 * srclen [I] Length of src in chars, or -1 if src is NUL terminated
1551 * dst [O] Destination for mapped string
1552 * dstlen [I] Length of dst in characters
1553 *
1554 * RETURNS
1555 * Success: The length of the mapped string in dst, including the NUL terminator.
1556 * Failure: 0. Use GetLastError() to determine the cause.
1557 */
1558 INT WINAPI LCMapStringA(LCID lcid, DWORD flags, LPCSTR src, INT srclen,
1559 LPSTR dst, INT dstlen)
1560 {
1561 WCHAR *bufW = NtCurrentTeb()->StaticUnicodeBuffer;
1562 LPWSTR srcW, dstW;
1563 INT ret = 0, srclenW, dstlenW;
1564 UINT locale_cp = CP_ACP;
1565
1566 if (!src || !srclen || dstlen < 0)
1567 {
1568 SetLastError(ERROR_INVALID_PARAMETER);
1569 return 0;
1570 }
1571
1572 if (!(flags & LOCALE_USE_CP_ACP)) locale_cp = get_lcid_codepage( lcid );
1573
1574 srclenW = MultiByteToWideChar(locale_cp, 0, src, srclen, bufW, 260);
1575 if (srclenW)
1576 srcW = bufW;
1577 else
1578 {
1579 srclenW = MultiByteToWideChar(locale_cp, 0, src, srclen, NULL, 0);
1580 srcW = HeapAlloc(GetProcessHeap(), 0, srclenW * sizeof(WCHAR));
1581 if (!srcW)
1582 {
1583 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1584 return 0;
1585 }
1586 MultiByteToWideChar(locale_cp, 0, src, srclen, srcW, srclenW);
1587 }
1588
1589 if (flags & LCMAP_SORTKEY)
1590 {
1591 if (src == dst)
1592 {
1593 SetLastError(ERROR_INVALID_FLAGS);
1594 goto map_string_exit;
1595 }
1596 ret = wine_get_sortkey(flags, srcW, srclenW, dst, dstlen);
1597 if (ret == 0)
1598 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1599 else
1600 ret++;
1601 goto map_string_exit;
1602 }
1603
1604 if (flags & SORT_STRINGSORT)
1605 {
1606 SetLastError(ERROR_INVALID_FLAGS);
1607 goto map_string_exit;
1608 }
1609
1610 dstlenW = LCMapStringW(lcid, flags, srcW, srclenW, NULL, 0);
1611 if (!dstlenW)
1612 goto map_string_exit;
1613
1614 dstW = HeapAlloc(GetProcessHeap(), 0, dstlenW * sizeof(WCHAR));
1615 if (!dstW)
1616 {
1617 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1618 goto map_string_exit;
1619 }
1620
1621 LCMapStringW(lcid, flags, srcW, srclenW, dstW, dstlenW);
1622 ret = WideCharToMultiByte(locale_cp, 0, dstW, dstlenW, dst, dstlen, NULL, NULL);
1623 HeapFree(GetProcessHeap(), 0, dstW);
1624
1625 map_string_exit:
1626 if (srcW != bufW) HeapFree(GetProcessHeap(), 0, srcW);
1627 return ret;
1628 }
1629
1630 /*************************************************************************
1631 * FoldStringA (KERNEL32.@)
1632 *
1633 * Map characters in a string.
1634 *
1635 * PARAMS
1636 * dwFlags [I] Flags controlling chars to map (MAP_ constants from "winnls.h")
1637 * src [I] String to map
1638 * srclen [I] Length of src, or -1 if src is NUL terminated
1639 * dst [O] Destination for mapped string
1640 * dstlen [I] Length of dst, or 0 to find the required length for the mapped string
1641 *
1642 * RETURNS
1643 * Success: The length of the string written to dst, including the terminating NUL. If
1644 * dstlen is 0, the value returned is the same, but nothing is written to dst,
1645 * and dst may be NULL.
1646 * Failure: 0. Use GetLastError() to determine the cause.
1647 */
1648 INT WINAPI FoldStringA(DWORD dwFlags, LPCSTR src, INT srclen,
1649 LPSTR dst, INT dstlen)
1650 {
1651 INT ret = 0, srclenW = 0;
1652 WCHAR *srcW = NULL, *dstW = NULL;
1653
1654 if (!src || !srclen || dstlen < 0 || (dstlen && !dst) || src == dst)
1655 {
1656 SetLastError(ERROR_INVALID_PARAMETER);
1657 return 0;
1658 }
1659
1660 srclenW = MultiByteToWideChar(CP_ACP, dwFlags & MAP_COMPOSITE ? MB_COMPOSITE : 0,
1661 src, srclen, NULL, 0);
1662 srcW = HeapAlloc(GetProcessHeap(), 0, srclenW * sizeof(WCHAR));
1663
1664 if (!srcW)
1665 {
1666 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1667 goto FoldStringA_exit;
1668 }
1669
1670 MultiByteToWideChar(CP_ACP, dwFlags & MAP_COMPOSITE ? MB_COMPOSITE : 0,
1671 src, srclen, srcW, srclenW);
1672
1673 dwFlags = (dwFlags & ~MAP_PRECOMPOSED) | MAP_FOLDCZONE;
1674
1675 ret = FoldStringW(dwFlags, srcW, srclenW, NULL, 0);
1676 if (ret && dstlen)
1677 {
1678 dstW = HeapAlloc(GetProcessHeap(), 0, ret * sizeof(WCHAR));
1679
1680 if (!dstW)
1681 {
1682 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1683 goto FoldStringA_exit;
1684 }
1685
1686 ret = FoldStringW(dwFlags, srcW, srclenW, dstW, ret);
1687 if (!WideCharToMultiByte(CP_ACP, 0, dstW, ret, dst, dstlen, NULL, NULL))
1688 {
1689 ret = 0;
1690 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1691 }
1692 }
1693
1694 HeapFree(GetProcessHeap(), 0, dstW);
1695
1696 FoldStringA_exit:
1697 HeapFree(GetProcessHeap(), 0, srcW);
1698 return ret;
1699 }
1700
1701 /*************************************************************************
1702 * FoldStringW (KERNEL32.@)
1703 *
1704 * See FoldStringA.
1705 */
1706 INT WINAPI FoldStringW(DWORD dwFlags, LPCWSTR src, INT srclen,
1707 LPWSTR dst, INT dstlen)
1708 {
1709 int ret;
1710
1711 switch (dwFlags & (MAP_COMPOSITE|MAP_PRECOMPOSED|MAP_EXPAND_LIGATURES))
1712 {
1713 case 0:
1714 if (dwFlags)
1715 break;
1716 /* Fall through for dwFlags == 0 */
1717 case MAP_PRECOMPOSED|MAP_COMPOSITE:
1718 case MAP_PRECOMPOSED|MAP_EXPAND_LIGATURES:
1719 case MAP_COMPOSITE|MAP_EXPAND_LIGATURES:
1720 SetLastError(ERROR_INVALID_FLAGS);
1721 return 0;
1722 }
1723
1724 if (!src || !srclen || dstlen < 0 || (dstlen && !dst) || src == dst)
1725 {
1726 SetLastError(ERROR_INVALID_PARAMETER);
1727 return 0;
1728 }
1729
1730 ret = wine_fold_string(dwFlags, src, srclen, dst, dstlen);
1731 if (!ret)
1732 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1733 return ret;
1734 }
1735
1736 /******************************************************************************
1737 * CompareStringW (KERNEL32.@)
1738 *
1739 * See CompareStringA.
1740 */
1741 INT WINAPI CompareStringW(LCID lcid, DWORD style,
1742 LPCWSTR str1, INT len1, LPCWSTR str2, INT len2)
1743 {
1744 INT ret;
1745
1746 if (!str1 || !str2)
1747 {
1748 SetLastError(ERROR_INVALID_PARAMETER);
1749 return 0;
1750 }
1751
1752 if( style & ~(NORM_IGNORECASE|NORM_IGNORENONSPACE|NORM_IGNORESYMBOLS|
1753 SORT_STRINGSORT|NORM_IGNOREKANATYPE|NORM_IGNOREWIDTH|LOCALE_USE_CP_ACP|0x10000000) )
1754 {
1755 SetLastError(ERROR_INVALID_FLAGS);
1756 return 0;
1757 }
1758
1759 /* this style is related to diacritics in Arabic, Japanese, and Hebrew */
1760 if (style & 0x10000000)
1761 WARN("Ignoring unknown style 0x10000000\n");
1762
1763 if (len1 < 0) len1 = strlenW(str1);
1764 if (len2 < 0) len2 = strlenW(str2);
1765
1766 ret = wine_compare_string(style, str1, len1, str2, len2);
1767
1768 if (ret) /* need to translate result */
1769 return (ret < 0) ? CSTR_LESS_THAN : CSTR_GREATER_THAN;
1770 return CSTR_EQUAL;
1771 }
1772
1773 /******************************************************************************
1774 * CompareStringA (KERNEL32.@)
1775 *
1776 * Compare two locale sensitive strings.
1777 *
1778 * PARAMS
1779 * lcid [I] LCID for the comparison
1780 * style [I] Flags for the comparison (NORM_ constants from "winnls.h").
1781 * str1 [I] First string to compare
1782 * len1 [I] Length of str1, or -1 if str1 is NUL terminated
1783 * str2 [I] Second string to compare
1784 * len2 [I] Length of str2, or -1 if str2 is NUL terminated
1785 *
1786 * RETURNS
1787 * Success: CSTR_LESS_THAN, CSTR_EQUAL or CSTR_GREATER_THAN depending on whether
1788 * str1 is less than, equal to or greater than str2 respectively.
1789 * Failure: FALSE. Use GetLastError() to determine the cause.
1790 */
1791 INT WINAPI CompareStringA(LCID lcid, DWORD style,
1792 LPCSTR str1, INT len1, LPCSTR str2, INT len2)
1793 {
1794 WCHAR *buf1W = NtCurrentTeb()->StaticUnicodeBuffer;
1795 WCHAR *buf2W = buf1W + 130;
1796 LPWSTR str1W, str2W;
1797 INT len1W, len2W, ret;
1798 UINT locale_cp = CP_ACP;
1799
1800 if (!str1 || !str2)
1801 {
1802 SetLastError(ERROR_INVALID_PARAMETER);
1803 return 0;
1804 }
1805 if (len1 < 0) len1 = strlen(str1);
1806 if (len2 < 0) len2 = strlen(str2);
1807
1808 if (!(style & LOCALE_USE_CP_ACP)) locale_cp = get_lcid_codepage( lcid );
1809
1810 len1W = MultiByteToWideChar(locale_cp, 0, str1, len1, buf1W, 130);
1811 if (len1W)
1812 str1W = buf1W;
1813 else
1814 {
1815 len1W = MultiByteToWideChar(locale_cp, 0, str1, len1, NULL, 0);
1816 str1W = HeapAlloc(GetProcessHeap(), 0, len1W * sizeof(WCHAR));
1817 if (!str1W)
1818 {
1819 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1820 return 0;
1821 }
1822 MultiByteToWideChar(locale_cp, 0, str1, len1, str1W, len1W);
1823 }
1824 len2W = MultiByteToWideChar(locale_cp, 0, str2, len2, buf2W, 130);
1825 if (len2W)
1826 str2W = buf2W;
1827 else
1828 {
1829 len2W = MultiByteToWideChar(locale_cp, 0, str2, len2, NULL, 0);
1830 str2W = HeapAlloc(GetProcessHeap(), 0, len2W * sizeof(WCHAR));
1831 if (!str2W)
1832 {
1833 if (str1W != buf1W) HeapFree(GetProcessHeap(), 0, str1W);
1834 SetLastError(ERROR_NOT_ENOUGH_MEMORY);
1835 return 0;
1836 }
1837 MultiByteToWideChar(locale_cp, 0, str2, len2, str2W, len2W);
1838 }
1839
1840 ret = CompareStringW(lcid, style, str1W, len1W, str2W, len2W);
1841
1842 if (str1W != buf1W) HeapFree(GetProcessHeap(), 0, str1W);
1843 if (str2W != buf2W) HeapFree(GetProcessHeap(), 0, str2W);
1844 return ret;
1845 }
1846
1847 static HANDLE NLS_RegOpenKey(HANDLE hRootKey, LPCWSTR szKeyName)
1848 {
1849 UNICODE_STRING keyName;
1850 OBJECT_ATTRIBUTES attr;
1851 HANDLE hkey;
1852
1853 RtlInitUnicodeString( &keyName, szKeyName );
1854 InitializeObjectAttributes(&attr, &keyName, 0, hRootKey, NULL);
1855
1856 if (NtOpenKey( &hkey, KEY_READ, &attr ) != STATUS_SUCCESS)
1857 hkey = 0;
1858
1859 return hkey;
1860 }
1861
1862 static BOOL NLS_RegEnumSubKey(HANDLE hKey, UINT ulIndex, LPWSTR szKeyName,
1863 ULONG keyNameSize)
1864 {
1865 BYTE buffer[80];
1866 KEY_BASIC_INFORMATION *info = (KEY_BASIC_INFORMATION *)buffer;
1867 DWORD dwLen;
1868
1869 if (NtEnumerateKey( hKey, ulIndex, KeyBasicInformation, buffer,
1870 sizeof(buffer), &dwLen) != STATUS_SUCCESS ||
1871 info->NameLength > keyNameSize)
1872 {
1873 return FALSE;
1874 }
1875
1876 TRACE("info->Name %s info->NameLength %d\n", debugstr_w(info->Name), info->NameLength);
1877
1878 memcpy( szKeyName, info->Name, info->NameLength);
1879 szKeyName[info->NameLength / sizeof(WCHAR)] = '\0';
1880
1881 TRACE("returning %s\n", debugstr_w(szKeyName));
1882 return TRUE;
1883 }
1884
1885 static BOOL NLS_RegEnumValue(HANDLE hKey, UINT ulIndex,
1886 LPWSTR szValueName, ULONG valueNameSize,
1887 LPWSTR szValueData, ULONG valueDataSize)
1888 {
1889 BYTE buffer[80];
1890 KEY_VALUE_FULL_INFORMATION *info = (KEY_VALUE_FULL_INFORMATION *)buffer;
1891 DWORD dwLen;
1892
1893 if (NtEnumerateValueKey( hKey, ulIndex, KeyValueFullInformation,
1894 buffer, sizeof(buffer), &dwLen ) != STATUS_SUCCESS ||
1895 info->NameLength > valueNameSize ||
1896 info->DataLength > valueDataSize)
1897 {
1898 return FALSE;
1899 }
1900
1901 TRACE("info->Name %s info->DataLength %d\n", debugstr_w(info->Name), info->DataLength);
1902
1903 memcpy( szValueName, info->Name, info->NameLength);
1904 szValueName[info->NameLength / sizeof(WCHAR)] = '\0';
1905 memcpy( szValueData, buffer + info->DataOffset, info->DataLength );
1906 szValueData[info->DataLength / sizeof(WCHAR)] = '\0';
1907
1908 TRACE("returning %s %s\n", debugstr_w(szValueName), debugstr_w(szValueData));
1909 return TRUE;
1910 }
1911
1912 static BOOL NLS_RegGetDword(HANDLE hKey, LPCWSTR szValueName, DWORD *lpVal)
1913 {
1914 BYTE buffer[128];
1915 const KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)buffer;
1916 DWORD dwSize = sizeof(buffer);
1917 UNICODE_STRING valueName;
1918
1919 RtlInitUnicodeString( &valueName, szValueName );
1920
1921 TRACE("%p, %s\n", hKey, debugstr_w(szValueName));
1922 if (NtQueryValueKey( hKey, &valueName, KeyValuePartialInformation,
1923 buffer, dwSize, &dwSize ) == STATUS_SUCCESS &&
1924 info->DataLength == sizeof(DWORD))
1925 {
1926 memcpy(lpVal, info->Data, sizeof(DWORD));
1927 return TRUE;
1928 }
1929
1930 return FALSE;
1931 }
1932
1933 static BOOL NLS_GetLanguageGroupName(LGRPID lgrpid, LPWSTR szName, ULONG nameSize)
1934 {
1935 LANGID langId;
1936 LPCWSTR szResourceName = MAKEINTRESOURCEW(((lgrpid + 0x2000) >> 4) + 1);
1937 HRSRC hResource;
1938 BOOL bRet = FALSE;
1939
1940 /* FIXME: Is it correct to use the system default langid? */
1941 langId = GetSystemDefaultLangID();
1942
1943 if (SUBLANGID(langId) == SUBLANG_NEUTRAL)
1944 langId = MAKELANGID( PRIMARYLANGID(langId), SUBLANG_DEFAULT );
1945
1946 hResource = FindResourceExW( kernel32_handle, (LPWSTR)RT_STRING, szResourceName, langId );
1947
1948 if (hResource)
1949 {
1950 HGLOBAL hResDir = LoadResource( kernel32_handle, hResource );
1951
1952 if (hResDir)
1953 {
1954 ULONG iResourceIndex = lgrpid & 0xf;
1955 LPCWSTR lpResEntry = LockResource( hResDir );
1956 ULONG i;
1957
1958 for (i = 0; i < iResourceIndex; i++)
1959 lpResEntry += *lpResEntry + 1;
1960
1961 if (*lpResEntry < nameSize)
1962 {
1963 memcpy( szName, lpResEntry + 1, *lpResEntry * sizeof(WCHAR) );
1964 szName[*lpResEntry] = '\0';
1965 bRet = TRUE;
1966 }
1967
1968 }
1969 FreeResource( hResource );
1970 }
1971 return bRet;
1972 }
1973
1974 /* Registry keys for NLS related information */
1975
1976 static const WCHAR szCountryListName[] = {
1977 'M','a','c','h','i','n','e','\\','S','o','f','t','w','a','r','e','\\',
1978 'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\',
1979 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
1980 'T','e','l','e','p','h','o','n','y','\\',
1981 'C','o','u','n','t','r','y',' ','L','i','s','t','\0'
1982 };
1983
1984
1985 /* Callback function ptrs for EnumSystemLanguageGroupsA/W */
1986 typedef struct
1987 {
1988 LANGUAGEGROUP_ENUMPROCA procA;
1989 LANGUAGEGROUP_ENUMPROCW procW;
1990 DWORD dwFlags;
1991 LONG_PTR lParam;
1992 } ENUMLANGUAGEGROUP_CALLBACKS;
1993
1994 /* Internal implementation of EnumSystemLanguageGroupsA/W */
1995 static BOOL NLS_EnumSystemLanguageGroups(ENUMLANGUAGEGROUP_CALLBACKS *lpProcs)
1996 {
1997 WCHAR szNumber[10], szValue[4];
1998 HANDLE hKey;
1999 BOOL bContinue = TRUE;
2000 ULONG ulIndex = 0;
2001
2002 if (!lpProcs)
2003 {
2004 SetLastError(ERROR_INVALID_PARAMETER);
2005 return FALSE;
2006 }
2007
2008 switch (lpProcs->dwFlags)
2009 {
2010 case 0:
2011 /* Default to LGRPID_INSTALLED */
2012 lpProcs->dwFlags = LGRPID_INSTALLED;
2013 /* Fall through... */
2014 case LGRPID_INSTALLED:
2015 case LGRPID_SUPPORTED:
2016 break;
2017 default:
2018 SetLastError(ERROR_INVALID_FLAGS);
2019 return FALSE;
2020 }
2021
2022 hKey = NLS_RegOpenKey( 0, szLangGroupsKeyName );
2023
2024 if (!hKey)
2025 FIXME("NLS registry key not found. Please apply the default registry file 'wine.inf'\n");
2026
2027 while (bContinue)
2028 {
2029 if (NLS_RegEnumValue( hKey, ulIndex, szNumber, sizeof(szNumber),
2030 szValue, sizeof(szValue) ))
2031 {
2032 BOOL bInstalled = szValue[0] == '1' ? TRUE : FALSE;
2033 LGRPID lgrpid = strtoulW( szNumber, NULL, 16 );
2034
2035 TRACE("grpid %s (%sinstalled)\n", debugstr_w(szNumber),
2036 bInstalled ? "" : "not ");
2037
2038 if (lpProcs->dwFlags == LGRPID_SUPPORTED || bInstalled)
2039 {
2040 WCHAR szGrpName[48];
2041
2042 if (!NLS_GetLanguageGroupName( lgrpid, szGrpName, sizeof(szGrpName) / sizeof(WCHAR) ))
2043 szGrpName[0] = '\0';
2044
2045 if (lpProcs->procW)
2046 bContinue = lpProcs->procW( lgrpid, szNumber, szGrpName, lpProcs->dwFlags,
2047 lpProcs->lParam );
2048 else
2049 {
2050 char szNumberA[sizeof(szNumber)/sizeof(WCHAR)];
2051 char szGrpNameA[48];
2052
2053 /* FIXME: MSDN doesn't say which code page the W->A translation uses,
2054 * or whether the language names are ever localised. Assume CP_ACP.
2055 */
2056
2057 WideCharToMultiByte(CP_ACP, 0, szNumber, -1, szNumberA, sizeof(szNumberA), 0, 0);
2058 WideCharToMultiByte(CP_ACP, 0, szGrpName, -1, szGrpNameA, sizeof(szGrpNameA), 0, 0);
2059
2060 bContinue = lpProcs->procA( lgrpid, szNumberA, szGrpNameA, lpProcs->dwFlags,
2061 lpProcs->lParam );
2062 }
2063 }
2064
2065 ulIndex++;
2066 }
2067 else
2068 bContinue = FALSE;
2069
2070 if (!bContinue)
2071 break;
2072 }
2073
2074 if (hKey)
2075 NtClose( hKey );
2076
2077 return TRUE;
2078 }
2079
2080 /******************************************************************************
2081 * EnumSystemLanguageGroupsA (KERNEL32.@)
2082 *
2083 * Call a users function for each language group available on the system.
2084 *
2085 * PARAMS
2086 * pLangGrpEnumProc [I] Callback function to call for each language group
2087 * dwFlags [I] LGRPID_SUPPORTED=All Supported, LGRPID_INSTALLED=Installed only
2088 * lParam [I] User parameter to pass to pLangGrpEnumProc
2089 *
2090 * RETURNS
2091 * Success: TRUE.
2092 * Failure: FALSE. Use GetLastError() to determine the cause.
2093 */
2094 BOOL WINAPI EnumSystemLanguageGroupsA(LANGUAGEGROUP_ENUMPROCA pLangGrpEnumProc,
2095 DWORD dwFlags, LONG_PTR lParam)
2096 {
2097 ENUMLANGUAGEGROUP_CALLBACKS procs;
2098
2099 TRACE("(%p,0x%08X,0x%08lX)\n", pLangGrpEnumProc, dwFlags, lParam);
2100
2101 procs.procA = pLangGrpEnumProc;
2102 procs.procW = NULL;
2103 procs.dwFlags = dwFlags;
2104 procs.lParam = lParam;
2105
2106 return NLS_EnumSystemLanguageGroups( pLangGrpEnumProc ? &procs : NULL);
2107 }
2108
2109 /******************************************************************************
2110 * EnumSystemLanguageGroupsW (KERNEL32.@)
2111 *
2112 * See EnumSystemLanguageGroupsA.
2113 */
2114 BOOL WINAPI EnumSystemLanguageGroupsW(LANGUAGEGROUP_ENUMPROCW pLangGrpEnumProc,
2115 DWORD dwFlags, LONG_PTR lParam)
2116 {
2117 ENUMLANGUAGEGROUP_CALLBACKS procs;
2118
2119 TRACE("(%p,0x%08X,0x%08lX)\n", pLangGrpEnumProc, dwFlags, lParam);
2120
2121 procs.procA = NULL;
2122 procs.procW = pLangGrpEnumProc;
2123 procs.dwFlags = dwFlags;
2124 procs.lParam = lParam;
2125
2126 return NLS_EnumSystemLanguageGroups( pLangGrpEnumProc ? &procs : NULL);
2127 }
2128
2129 /******************************************************************************
2130 * IsValidLanguageGroup (KERNEL32.@)
2131 *
2132 * Determine if a language group is supported and/or installed.
2133 *
2134 * PARAMS
2135 * lgrpid [I] Language Group Id (LGRPID_ values from "winnls.h")
2136 * dwFlags [I] LGRPID_SUPPORTED=Supported, LGRPID_INSTALLED=Installed
2137 *
2138 * RETURNS
2139 * TRUE, if lgrpid is supported and/or installed, according to dwFlags.
2140 * FALSE otherwise.
2141 */
2142 BOOL WINAPI IsValidLanguageGroup(LGRPID lgrpid, DWORD dwFlags)
2143 {
2144 static const WCHAR szFormat[] = { '%','x','\0' };
2145 WCHAR szValueName[16], szValue[2];
2146 BOOL bSupported = FALSE, bInstalled = FALSE;
2147 HANDLE hKey;
2148
2149
2150 switch (dwFlags)
2151 {
2152 case LGRPID_INSTALLED:
2153 case LGRPID_SUPPORTED:
2154
2155 hKey = NLS_RegOpenKey( 0, szLangGroupsKeyName );
2156
2157 sprintfW( szValueName, szFormat, lgrpid );
2158
2159 if (NLS_RegGetDword( hKey, szValueName, (LPDWORD)szValue ))
2160 {
2161 bSupported = TRUE;
2162
2163 if (szValue[0] == '1')
2164 bInstalled = TRUE;
2165 }
2166
2167 if (hKey)
2168 NtClose( hKey );
2169
2170 break;
2171 }
2172
2173 if ((dwFlags == LGRPID_SUPPORTED && bSupported) ||
2174 (dwFlags == LGRPID_INSTALLED && bInstalled))
2175 return TRUE;
2176
2177 return FALSE;
2178 }
2179
2180 /* Callback function ptrs for EnumLanguageGrouplocalesA/W */
2181 typedef struct
2182 {
2183 LANGGROUPLOCALE_ENUMPROCA procA;
2184 LANGGROUPLOCALE_ENUMPROCW procW;
2185 DWORD dwFlags;
2186 LGRPID lgrpid;
2187 LONG_PTR lParam;
2188 } ENUMLANGUAGEGROUPLOCALE_CALLBACKS;
2189
2190 /* Internal implementation of EnumLanguageGrouplocalesA/W */
2191 static BOOL NLS_EnumLanguageGroupLocales(ENUMLANGUAGEGROUPLOCALE_CALLBACKS *lpProcs)
2192 {
2193 static const WCHAR szAlternateSortsKeyName[] = {
2194 'A','l','t','e','r','n','a','t','e',' ','S','o','r','t','s','\0'
2195 };
2196 WCHAR szNumber[10], szValue[4];
2197 HANDLE hKey;
2198 BOOL bContinue = TRUE, bAlternate = FALSE;
2199 LGRPID lgrpid;
2200 ULONG ulIndex = 1; /* Ignore default entry of 1st key */
2201
2202 if (!lpProcs || !lpProcs->lgrpid || lpProcs->lgrpid > LGRPID_ARMENIAN)
2203 {
2204 SetLastError(ERROR_INVALID_PARAMETER);
2205 return FALSE;
2206 }
2207
2208 if (lpProcs->dwFlags)
2209 {
2210 SetLastError(ERROR_INVALID_FLAGS);
2211 return FALSE;
2212 }
2213
2214 hKey = NLS_RegOpenKey( 0, szLocaleKeyName );
2215
2216 if (!hKey)
2217 WARN("NLS registry key not found. Please apply the default registry file 'wine.inf'\n");
2218
2219 while (bContinue)
2220 {
2221 if (NLS_RegEnumValue( hKey, ulIndex, szNumber, sizeof(szNumber),
2222 szValue, sizeof(szValue) ))
2223 {
2224 lgrpid = strtoulW( szValue, NULL, 16 );
2225
2226 TRACE("lcid %s, grpid %d (%smatched)\n", debugstr_w(szNumber),
2227 lgrpid, lgrpid == lpProcs->lgrpid ? "" : "not ");
2228
2229 if (lgrpid == lpProcs->lgrpid)
2230 {
2231 LCID lcid;
2232
2233 lcid = strtoulW( szNumber, NULL, 16 );
2234
2235 /* FIXME: native returns extra text for a few (17/150) locales, e.g:
2236 * '00000437 ;Georgian'
2237 * At present we only pass the LCID string.
2238 */
2239
2240 if (lpProcs->procW)
2241 bContinue = lpProcs->procW( lgrpid, lcid, szNumber, lpProcs->lParam );
2242 else
2243 {
2244 char szNumberA[sizeof(szNumber)/sizeof(WCHAR)];
2245
2246 WideCharToMultiByte(CP_ACP, 0, szNumber, -1, szNumberA, sizeof(szNumberA), 0, 0);
2247
2248 bContinue = lpProcs->procA( lgrpid, lcid, szNumberA, lpProcs->lParam );
2249 }
2250 }
2251
2252 ulIndex++;
2253 }
2254 else
2255 {
2256 /* Finished enumerating this key */
2257 if (!bAlternate)
2258 {
2259 /* Enumerate alternate sorts also */
2260 hKey = NLS_RegOpenKey( hKey, szAlternateSortsKeyName );
2261 bAlternate = TRUE;
2262 ulIndex = 0;
2263 }
2264 else
2265 bContinue = FALSE; /* Finished both keys */
2266 }
2267
2268 if (!bContinue)
2269 break;
2270 }
2271
2272 if (hKey)
2273 NtClose( hKey );
2274
2275 return TRUE;
2276 }
2277
2278 /******************************************************************************
2279 * EnumLanguageGroupLocalesA (KERNEL32.@)
2280 *
2281 * Call a users function for every locale in a language group available on the system.
2282 *
2283 * PARAMS
2284 * pLangGrpLcEnumProc [I] Callback function to call for each locale
2285 * lgrpid [I] Language group (LGRPID_ values from "winnls.h")
2286 * dwFlags [I] Reserved, set to 0
2287 * lParam [I] User parameter to pass to pLangGrpLcEnumProc
2288 *
2289 * RETURNS
2290 * Success: TRUE.
2291 * Failure: FALSE. Use GetLastError() to determine the cause.
2292 */
2293 BOOL WINAPI EnumLanguageGroupLocalesA(LANGGROUPLOCALE_ENUMPROCA pLangGrpLcEnumProc,
2294 LGRPID lgrpid, DWORD dwFlags, LONG_PTR lParam)
2295 {
2296 ENUMLANGUAGEGROUPLOCALE_CALLBACKS callbacks;
2297
2298 TRACE("(%p,0x%08X,0x%08X,0x%08lX)\n", pLangGrpLcEnumProc, lgrpid, dwFlags, lParam);
2299
2300 callbacks.procA = pLangGrpLcEnumProc;
2301 callbacks.procW = NULL;
2302 callbacks.dwFlags = dwFlags;
2303 callbacks.lgrpid = lgrpid;
2304 callbacks.lParam = lParam;
2305
2306 return NLS_EnumLanguageGroupLocales( pLangGrpLcEnumProc ? &callbacks : NULL );
2307 }
2308
2309 /******************************************************************************
2310 * EnumLanguageGroupLocalesW (KERNEL32.@)
2311 *
2312 * See EnumLanguageGroupLocalesA.
2313 */
2314 BOOL WINAPI EnumLanguageGroupLocalesW(LANGGROUPLOCALE_ENUMPROCW pLangGrpLcEnumProc,
2315 LGRPID lgrpid, DWORD dwFlags, LONG_PTR lParam)
2316 {
2317 ENUMLANGUAGEGROUPLOCALE_CALLBACKS callbacks;
2318
2319 TRACE("(%p,0x%08X,0x%08X,0x%08lX)\n", pLangGrpLcEnumProc, lgrpid, dwFlags, lParam);
2320
2321 callbacks.procA = NULL;
2322 callbacks.procW = pLangGrpLcEnumProc;
2323 callbacks.dwFlags = dwFlags;
2324 callbacks.lgrpid = lgrpid;
2325 callbacks.lParam = lParam;
2326
2327 return NLS_EnumLanguageGroupLocales( pLangGrpLcEnumProc ? &callbacks : NULL );
2328 }
2329
2330 /* Callback function ptrs for EnumSystemCodePagesA/W */
2331 typedef struct
2332 {
2333 CODEPAGE_ENUMPROCA procA;
2334 CODEPAGE_ENUMPROCW procW;
2335 DWORD dwFlags;
2336 } ENUMSYSTEMCODEPAGES_CALLBACKS;
2337
2338 /* Internal implementation of EnumSystemCodePagesA/W */
2339 static BOOL NLS_EnumSystemCodePages(ENUMSYSTEMCODEPAGES_CALLBACKS *lpProcs)
2340 {
2341 WCHAR szNumber[5 + 1], szValue[MAX_PATH];
2342 HANDLE hKey;
2343 BOOL bContinue = TRUE;
2344 ULONG ulIndex = 0;
2345
2346 if (!lpProcs)
2347 {
2348 SetLastError(ERROR_INVALID_PARAMETER);
2349 return FALSE;
2350 }
2351
2352 switch (lpProcs->dwFlags)
2353 {
2354 case CP_INSTALLED:
2355 case CP_SUPPORTED:
2356 break;
2357 default:
2358 SetLastError(ERROR_INVALID_FLAGS);
2359 return FALSE;
2360 }
2361
2362 hKey = NLS_RegOpenKey(0, L"\\Registry\\Machine\\SYSTEM\\CurrentControlSet\\Control\\NLS\\CodePage");
2363 if (!hKey)
2364 {
2365 WARN("NLS_RegOpenKey() failed\n");
2366 return FALSE;
2367 }
2368
2369 while (bContinue)
2370 {
2371 if (NLS_RegEnumValue(hKey, ulIndex, szNumber, sizeof(szNumber),
2372 szValue, sizeof(szValue)))
2373 {
2374 if ((lpProcs->dwFlags == CP_SUPPORTED)||
2375 ((lpProcs->dwFlags == CP_INSTALLED)&&(wcslen(szValue) > 2)))
2376 {
2377 if (lpProcs->procW)
2378 {
2379 bContinue = lpProcs->procW(szNumber);
2380 }
2381 else
2382 {
2383 char szNumberA[sizeof(szNumber)/sizeof(WCHAR)];
2384
2385 WideCharToMultiByte(CP_ACP, 0, szNumber, -1, szNumberA, sizeof(szNumberA), 0, 0);
2386 bContinue = lpProcs->procA(szNumberA);
2387 }
2388 }
2389
2390 ulIndex++;
2391
2392 } else bContinue = FALSE;
2393
2394 if (!bContinue)
2395 break;
2396 }
2397
2398 if (hKey)
2399 NtClose(hKey);
2400
2401 return TRUE;
2402 }
2403
2404 /*
2405 * @implemented
2406 */
2407 BOOL
2408 WINAPI
2409 EnumSystemCodePagesW (
2410 CODEPAGE_ENUMPROCW lpCodePageEnumProc,
2411 DWORD dwFlags
2412 )
2413 {
2414 ENUMSYSTEMCODEPAGES_CALLBACKS procs;
2415
2416 TRACE("(%p,0x%08X,0x%08lX)\n", lpCodePageEnumProc, dwFlags);
2417
2418 procs.procA = NULL;
2419 procs.procW = lpCodePageEnumProc;
2420 procs.dwFlags = dwFlags;
2421
2422 return NLS_EnumSystemCodePages(lpCodePageEnumProc ? &procs : NULL);
2423 }
2424
2425
2426 /*
2427 * @implemented
2428 */
2429 BOOL
2430 WINAPI
2431 EnumSystemCodePagesA (
2432 CODEPAGE_ENUMPROCA lpCodePageEnumProc,
2433 DWORD dwFlags
2434 )
2435 {
2436 ENUMSYSTEMCODEPAGES_CALLBACKS procs;
2437
2438 TRACE("(%p,0x%08X,0x%08lX)\n", lpCodePageEnumProc, dwFlags);
2439
2440 procs.procA = lpCodePageEnumProc;
2441 procs.procW = NULL;
2442 procs.dwFlags = dwFlags;
2443
2444 return NLS_EnumSystemCodePages(lpCodePageEnumProc ? &procs : NULL);
2445 }
2446 /******************************************************************************
2447 * EnumSystemGeoID (KERNEL32.@)
2448 *
2449 * Call a users function for every location available on the system.
2450 *
2451 * PARAMS
2452 * geoclass [I] Type of information desired (SYSGEOTYPE enum from "winnls.h")
2453 * reserved [I] Reserved, set to 0
2454 * pGeoEnumProc [I] Callback function to call for each location
2455 *
2456 * RETURNS
2457 * Success: TRUE.
2458 * Failure: FALSE. Use GetLastError() to determine the cause.
2459 */
2460 BOOL WINAPI EnumSystemGeoID(GEOCLASS geoclass, GEOID reserved, GEO_ENUMPROC pGeoEnumProc)
2461 {
2462 static const WCHAR szCountryCodeValueName[] = {
2463 'C','o','u','n','t','r','y','C','o','d','e','\0'
2464 };
2465 WCHAR szNumber[10];
2466 HANDLE hKey;
2467 ULONG ulIndex = 0;
2468
2469 TRACE("(0x%08X,0x%08X,%p)\n", geoclass, reserved, pGeoEnumProc);
2470
2471 if (geoclass != GEOCLASS_NATION || reserved || !pGeoEnumProc)
2472 {
2473 SetLastError(ERROR_INVALID_PARAMETER);
2474 return FALSE;
2475 }
2476
2477 hKey = NLS_RegOpenKey( 0, szCountryListName );
2478
2479 while (NLS_RegEnumSubKey( hKey, ulIndex, szNumber, sizeof(szNumber) ))
2480 {
2481 BOOL bContinue = TRUE;
2482 DWORD dwGeoId;
2483 HANDLE hSubKey = NLS_RegOpenKey( hKey, szNumber );
2484
2485 if (hSubKey)
2486 {
2487 if (NLS_RegGetDword( hSubKey, szCountryCodeValueName, &dwGeoId ))
2488 {
2489 TRACE("Got geoid %d\n", dwGeoId);
2490
2491 if (!pGeoEnumProc( dwGeoId ))
2492 bContinue = FALSE;
2493 }
2494
2495 NtClose( hSubKey );
2496 }
2497
2498 if (!bContinue)
2499 break;
2500
2501 ulIndex++;
2502 }
2503
2504 if (hKey)
2505 NtClose( hKey );
2506
2507 return TRUE;
2508 }
2509
2510 /******************************************************************************
2511 * InvalidateNLSCache (KERNEL32.@)
2512 *
2513 * Invalidate the cache of NLS values.
2514 *
2515 * PARAMS
2516 * None.
2517 *
2518 * RETURNS
2519 * Success: TRUE.
2520 * Failure: FALSE.
2521 */
2522 BOOL WINAPI InvalidateNLSCache(void)
2523 {
2524 FIXME("() stub\n");
2525 return FALSE;
2526 }
2527
2528 /******************************************************************************
2529 * GetUserGeoID (KERNEL32.@)
2530 */
2531 GEOID WINAPI GetUserGeoID( GEOCLASS GeoClass )
2532 {
2533 GEOID ret = GEOID_NOT_AVAILABLE;
2534 static const WCHAR geoW[] = {'G','e','o',0};
2535 static const WCHAR nationW[] = {'N','a','t','i','o','n',0};
2536 WCHAR bufferW[40], *end;
2537 DWORD count;
2538 HANDLE hkey, hSubkey = 0;
2539 UNICODE_STRING keyW;
2540 const KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)bufferW;
2541 RtlInitUnicodeString( &keyW, nationW );
2542 count = sizeof(bufferW);
2543
2544 if(!(hkey = create_registry_key())) return ret;
2545
2546 switch( GeoClass ){
2547 case GEOCLASS_NATION:
2548 if ((hSubkey = NLS_RegOpenKey(hkey, geoW)))
2549 {
2550 if((NtQueryValueKey(hSubkey, &keyW, KeyValuePartialInformation,
2551 bufferW, count, &count) == STATUS_SUCCESS ) && info->DataLength)
2552 ret = strtolW((LPCWSTR)info->Data, &end, 10);
2553 }
2554 break;
2555 case GEOCLASS_REGION:
2556 FIXME("GEOCLASS_REGION not handled yet\n");
2557 break;
2558 }
2559
2560 NtClose(hkey);
2561 if (hSubkey) NtClose(hSubkey);
2562 return ret;
2563 }
2564
2565 /******************************************************************************
2566 * SetUserGeoID (KERNEL32.@)
2567 */
2568 BOOL WINAPI SetUserGeoID( GEOID GeoID )
2569 {
2570 static const WCHAR geoW[] = {'G','e','o',0};
2571 static const WCHAR nationW[] = {'N','a','t','i','o','n',0};
2572 static const WCHAR formatW[] = {'%','i',0};
2573 UNICODE_STRING nameW,keyW;
2574 WCHAR bufferW[10];
2575 OBJECT_ATTRIBUTES attr;
2576 HANDLE hkey;
2577
2578 if(!(hkey = create_registry_key())) return FALSE;
2579
2580 attr.Length = sizeof(attr);
2581 attr.RootDirectory = hkey;
2582 attr.ObjectName = &nameW;
2583 attr.Attributes = 0;
2584 attr.SecurityDescriptor = NULL;
2585 attr.SecurityQualityOfService = NULL;
2586 RtlInitUnicodeString( &nameW, geoW );
2587 RtlInitUnicodeString( &keyW, nationW );
2588
2589 if (NtCreateKey( &hkey, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL ) != STATUS_SUCCESS)
2590
2591 {
2592 NtClose(attr.RootDirectory);
2593 return FALSE;
2594 }
2595
2596 sprintfW(bufferW, formatW, GeoID);
2597 NtSetValueKey(hkey, &keyW, 0, REG_SZ, bufferW, (strlenW(bufferW) + 1) * sizeof(WCHAR));
2598 NtClose(attr.RootDirectory);
2599 NtClose(hkey);
2600 return TRUE;
2601 }
2602
2603 typedef struct
2604 {
2605 union
2606 {
2607 UILANGUAGE_ENUMPROCA procA;
2608 UILANGUAGE_ENUMPROCW procW;
2609 } u;
2610 DWORD flags;
2611 LONG_PTR param;
2612 } ENUM_UILANG_CALLBACK;
2613
2614 static BOOL CALLBACK enum_uilang_proc_a( HMODULE hModule, LPCSTR type,
2615 LPCSTR name, WORD LangID, LONG_PTR lParam )
2616 {
2617 ENUM_UILANG_CALLBACK *enum_uilang = (ENUM_UILANG_CALLBACK *)lParam;
2618 char buf[20];
2619
2620 sprintf(buf, "%08x", (UINT)LangID);
2621 return enum_uilang->u.procA( buf, enum_uilang->param );
2622 }
2623
2624 static BOOL CALLBACK enum_uilang_proc_w( HMODULE hModule, LPCWSTR type,
2625 LPCWSTR name, WORD LangID, LONG_PTR lParam )
2626 {
2627 static const WCHAR formatW[] = {'%','0','8','x',0};
2628 ENUM_UILANG_CALLBACK *enum_uilang = (ENUM_UILANG_CALLBACK *)lParam;
2629 WCHAR buf[20];
2630
2631 sprintfW( buf, formatW, (UINT)LangID );
2632 return enum_uilang->u.procW( buf, enum_uilang->param );
2633 }
2634
2635 /******************************************************************************
2636 * EnumUILanguagesA (KERNEL32.@)
2637 */
2638 BOOL WINAPI EnumUILanguagesA(UILANGUAGE_ENUMPROCA pUILangEnumProc, DWORD dwFlags, LONG_PTR lParam)
2639 {
2640 ENUM_UILANG_CALLBACK enum_uilang;
2641
2642 TRACE("%p, %x, %lx\n", pUILangEnumProc, dwFlags, lParam);
2643
2644 if(!pUILangEnumProc) {
2645 SetLastError(ERROR_INVALID_PARAMETER);
2646 return FALSE;
2647 }
2648 if(dwFlags) {
2649 SetLastError(ERROR_INVALID_FLAGS);
2650 return FALSE;
2651 }
2652
2653 enum_uilang.u.procA = pUILangEnumProc;
2654 enum_uilang.flags = dwFlags;
2655 enum_uilang.param = lParam;
2656
2657 EnumResourceLanguagesA( kernel32_handle, (LPCSTR)RT_STRING,
2658 (LPCSTR)LOCALE_ILANGUAGE, enum_uilang_proc_a,
2659 (LONG_PTR)&enum_uilang);
2660 return TRUE;
2661 }
2662
2663 /******************************************************************************
2664 * EnumUILanguagesW (KERNEL32.@)
2665 */
2666 BOOL WINAPI EnumUILanguagesW(UILANGUAGE_ENUMPROCW pUILangEnumProc, DWORD dwFlags, LONG_PTR lParam)
2667 {
2668 ENUM_UILANG_CALLBACK enum_uilang;
2669
2670 TRACE("%p, %x, %lx\n", pUILangEnumProc, dwFlags, lParam);
2671
2672
2673 if(!pUILangEnumProc) {
2674 SetLastError(ERROR_INVALID_PARAMETER);
2675 return FALSE;
2676 }
2677 if(dwFlags) {
2678 SetLastError(ERROR_INVALID_FLAGS);
2679 return FALSE;
2680 }
2681
2682 enum_uilang.u.procW = pUILangEnumProc;
2683 enum_uilang.flags = dwFlags;
2684 enum_uilang.param = lParam;
2685
2686 EnumResourceLanguagesW( kernel32_handle, (LPCWSTR)RT_STRING,
2687 (LPCWSTR)LOCALE_ILANGUAGE, enum_uilang_proc_w,
2688 (LONG_PTR)&enum_uilang);
2689 return TRUE;
2690 }
2691
2692 INT WINAPI GetGeoInfoW(GEOID GeoId, GEOTYPE GeoType, LPWSTR lpGeoData,
2693 int cchData, LANGID language)
2694 {
2695 FIXME("%d %d %p %d %d\n", GeoId, GeoType, lpGeoData, cchData, language);
2696 return 0;
2697 }
2698
2699 INT WINAPI GetGeoInfoA(GEOID GeoId, GEOTYPE GeoType, LPSTR lpGeoData,
2700 int cchData, LANGID language)
2701 {
2702 FIXME("%d %d %p %d %d\n", GeoId, GeoType, lpGeoData, cchData, language);
2703 return 0;
2704 }