hlink/tests: Add a trailing '\n' to an ok() call.
[wine] / dlls / kernel32 / locale.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 #ifdef __APPLE__
36 # include <CoreFoundation/CFBundle.h>
37 # include <CoreFoundation/CFLocale.h>
38 # include <CoreFoundation/CFString.h>
39 #endif
40
41 #include "ntstatus.h"
42 #define WIN32_NO_STATUS
43 #include "windef.h"
44 #include "winbase.h"
45 #include "winuser.h"  /* for RT_STRINGW */
46 #include "winternl.h"
47 #include "wine/unicode.h"
48 #include "winnls.h"
49 #include "winerror.h"
50 #include "winver.h"
51 #include "kernel_private.h"
52 #include "wine/debug.h"
53
54 WINE_DEFAULT_DEBUG_CHANNEL(nls);
55
56 #define LOCALE_LOCALEINFOFLAGSMASK (LOCALE_NOUSEROVERRIDE|LOCALE_USE_CP_ACP|\
57                                     LOCALE_RETURN_NUMBER|LOCALE_RETURN_GENITIVE_NAMES)
58
59 /* current code pages */
60 static const union cptable *ansi_cptable;
61 static const union cptable *oem_cptable;
62 static const union cptable *mac_cptable;
63 static const union cptable *unix_cptable;  /* NULL if UTF8 */
64
65 static const WCHAR szNlsKeyName[] = {
66     'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
67     'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
68     'C','o','n','t','r','o','l','\\','N','l','s','\0'
69 };
70
71 static const WCHAR szLocaleKeyName[] = {
72     'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
73     'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
74     'C','o','n','t','r','o','l','\\','N','l','s','\\','L','o','c','a','l','e',0
75 };
76
77 static const WCHAR szLangGroupsKeyName[] = {
78     'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
79     'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
80     'C','o','n','t','r','o','l','\\','N','l','s','\\',
81     'L','a','n','g','u','a','g','e',' ','G','r','o','u','p','s',0
82 };
83
84 /* Charset to codepage map, sorted by name. */
85 static const struct charset_entry
86 {
87     const char *charset_name;
88     UINT        codepage;
89 } charset_names[] =
90 {
91     { "BIG5", 950 },
92     { "CP1250", 1250 },
93     { "CP1251", 1251 },
94     { "CP1252", 1252 },
95     { "CP1253", 1253 },
96     { "CP1254", 1254 },
97     { "CP1255", 1255 },
98     { "CP1256", 1256 },
99     { "CP1257", 1257 },
100     { "CP1258", 1258 },
101     { "CP932", 932 },
102     { "CP936", 936 },
103     { "CP949", 949 },
104     { "CP950", 950 },
105     { "EUCJP", 20932 },
106     { "GB2312", 936 },
107     { "IBM037", 37 },
108     { "IBM1026", 1026 },
109     { "IBM424", 424 },
110     { "IBM437", 437 },
111     { "IBM500", 500 },
112     { "IBM850", 850 },
113     { "IBM852", 852 },
114     { "IBM855", 855 },
115     { "IBM857", 857 },
116     { "IBM860", 860 },
117     { "IBM861", 861 },
118     { "IBM862", 862 },
119     { "IBM863", 863 },
120     { "IBM864", 864 },
121     { "IBM865", 865 },
122     { "IBM866", 866 },
123     { "IBM869", 869 },
124     { "IBM874", 874 },
125     { "IBM875", 875 },
126     { "ISO88591", 28591 },
127     { "ISO885910", 28600 },
128     { "ISO885913", 28603 },
129     { "ISO885914", 28604 },
130     { "ISO885915", 28605 },
131     { "ISO885916", 28606 },
132     { "ISO88592", 28592 },
133     { "ISO88593", 28593 },
134     { "ISO88594", 28594 },
135     { "ISO88595", 28595 },
136     { "ISO88596", 28596 },
137     { "ISO88597", 28597 },
138     { "ISO88598", 28598 },
139     { "ISO88599", 28599 },
140     { "KOI8R", 20866 },
141     { "KOI8U", 21866 },
142     { "UTF8", CP_UTF8 }
143 };
144
145
146 struct locale_name
147 {
148     WCHAR  win_name[128];   /* Windows name ("en-US") */
149     WCHAR  lang[128];       /* language ("en") (note: buffer contains the other strings too) */
150     WCHAR *country;         /* country ("US") */
151     WCHAR *charset;         /* charset ("UTF-8") for Unix format only */
152     WCHAR *script;          /* script ("Latn") for Windows format only */
153     WCHAR *modifier;        /* modifier or sort order */
154     LCID   lcid;            /* corresponding LCID */
155     int    matches;         /* number of elements matching LCID (0..4) */
156     UINT   codepage;        /* codepage corresponding to charset */
157 };
158
159 /* locale ids corresponding to the various Unix locale parameters */
160 static LCID lcid_LC_COLLATE;
161 static LCID lcid_LC_CTYPE;
162 static LCID lcid_LC_MESSAGES;
163 static LCID lcid_LC_MONETARY;
164 static LCID lcid_LC_NUMERIC;
165 static LCID lcid_LC_TIME;
166 static LCID lcid_LC_PAPER;
167 static LCID lcid_LC_MEASUREMENT;
168 static LCID lcid_LC_TELEPHONE;
169
170 /* Copy Ascii string to Unicode without using codepages */
171 static inline void strcpynAtoW( WCHAR *dst, const char *src, size_t n )
172 {
173     while (n > 1 && *src)
174     {
175         *dst++ = (unsigned char)*src++;
176         n--;
177     }
178     if (n) *dst = 0;
179 }
180
181
182 /***********************************************************************
183  *              get_lcid_codepage
184  *
185  * Retrieve the ANSI codepage for a given locale.
186  */
187 static inline UINT get_lcid_codepage( LCID lcid )
188 {
189     UINT ret;
190     if (!GetLocaleInfoW( lcid, LOCALE_IDEFAULTANSICODEPAGE|LOCALE_RETURN_NUMBER, (WCHAR *)&ret,
191                          sizeof(ret)/sizeof(WCHAR) )) ret = 0;
192     return ret;
193 }
194
195
196 /***********************************************************************
197  *              get_codepage_table
198  *
199  * Find the table for a given codepage, handling CP_ACP etc. pseudo-codepages
200  */
201 static const union cptable *get_codepage_table( unsigned int codepage )
202 {
203     const union cptable *ret = NULL;
204
205     assert( ansi_cptable );  /* init must have been done already */
206
207     switch(codepage)
208     {
209     case CP_ACP:
210         return ansi_cptable;
211     case CP_OEMCP:
212         return oem_cptable;
213     case CP_MACCP:
214         return mac_cptable;
215     case CP_UTF7:
216     case CP_UTF8:
217         break;
218     case CP_THREAD_ACP:
219         if (NtCurrentTeb()->CurrentLocale == GetUserDefaultLCID()) return ansi_cptable;
220         codepage = get_lcid_codepage( NtCurrentTeb()->CurrentLocale );
221         /* fall through */
222     default:
223         if (codepage == ansi_cptable->info.codepage) return ansi_cptable;
224         if (codepage == oem_cptable->info.codepage) return oem_cptable;
225         if (codepage == mac_cptable->info.codepage) return mac_cptable;
226         ret = wine_cp_get_table( codepage );
227         break;
228     }
229     return ret;
230 }
231
232
233 /***********************************************************************
234  *              charset_cmp (internal)
235  */
236 static int charset_cmp( const void *name, const void *entry )
237 {
238     const struct charset_entry *charset = entry;
239     return strcasecmp( name, charset->charset_name );
240 }
241
242 /***********************************************************************
243  *              find_charset
244  */
245 static UINT find_charset( const WCHAR *name )
246 {
247     const struct charset_entry *entry;
248     char charset_name[16];
249     size_t i, j;
250
251     /* remove punctuation characters from charset name */
252     for (i = j = 0; name[i] && j < sizeof(charset_name)-1; i++)
253         if (isalnum((unsigned char)name[i])) charset_name[j++] = name[i];
254     charset_name[j] = 0;
255
256     entry = bsearch( charset_name, charset_names,
257                      sizeof(charset_names)/sizeof(charset_names[0]),
258                      sizeof(charset_names[0]), charset_cmp );
259     if (entry) return entry->codepage;
260     return 0;
261 }
262
263
264 /***********************************************************************
265  *           find_locale_id_callback
266  */
267 static BOOL CALLBACK find_locale_id_callback( HMODULE hModule, LPCWSTR type,
268                                               LPCWSTR name, WORD LangID, LPARAM lParam )
269 {
270     struct locale_name *data = (struct locale_name *)lParam;
271     WCHAR buffer[128];
272     int matches = 0;
273     LCID lcid = MAKELCID( LangID, SORT_DEFAULT );  /* FIXME: handle sort order */
274
275     if (PRIMARYLANGID(LangID) == LANG_NEUTRAL) return TRUE; /* continue search */
276
277     /* first check exact name */
278     if (data->win_name[0] &&
279         GetLocaleInfoW( lcid, LOCALE_SNAME | LOCALE_NOUSEROVERRIDE,
280                         buffer, sizeof(buffer)/sizeof(WCHAR) ))
281     {
282         if (!strcmpW( data->win_name, buffer ))
283         {
284             matches = 4;  /* everything matches */
285             goto done;
286         }
287     }
288
289     if (!GetLocaleInfoW( lcid, LOCALE_SISO639LANGNAME | LOCALE_NOUSEROVERRIDE,
290                          buffer, sizeof(buffer)/sizeof(WCHAR) ))
291         return TRUE;
292     if (strcmpW( buffer, data->lang )) return TRUE;
293     matches++;  /* language name matched */
294
295     if (data->country)
296     {
297         if (GetLocaleInfoW( lcid, LOCALE_SISO3166CTRYNAME|LOCALE_NOUSEROVERRIDE,
298                             buffer, sizeof(buffer)/sizeof(WCHAR) ))
299         {
300             if (strcmpW( buffer, data->country )) goto done;
301             matches++;  /* country name matched */
302         }
303     }
304     else  /* match default language */
305     {
306         if (SUBLANGID(LangID) == SUBLANG_DEFAULT) matches++;
307     }
308
309     if (data->codepage)
310     {
311         UINT unix_cp;
312         if (GetLocaleInfoW( lcid, LOCALE_IDEFAULTUNIXCODEPAGE | LOCALE_RETURN_NUMBER,
313                             (LPWSTR)&unix_cp, sizeof(unix_cp)/sizeof(WCHAR) ))
314         {
315             if (unix_cp == data->codepage) matches++;
316         }
317     }
318
319     /* FIXME: check sort order */
320
321 done:
322     if (matches > data->matches)
323     {
324         data->lcid = lcid;
325         data->matches = matches;
326     }
327     return (data->matches < 4);  /* no need to continue for perfect match */
328 }
329
330
331 /***********************************************************************
332  *              parse_locale_name
333  *
334  * Parse a locale name into a struct locale_name, handling both Windows and Unix formats.
335  * Unix format is: lang[_country][.charset][@modifier]
336  * Windows format is: lang[-script][-country][_modifier]
337  */
338 static void parse_locale_name( const WCHAR *str, struct locale_name *name )
339 {
340     static const WCHAR sepW[] = {'-','_','.','@',0};
341     static const WCHAR winsepW[] = {'-','_',0};
342     static const WCHAR posixW[] = {'P','O','S','I','X',0};
343     static const WCHAR cW[] = {'C',0};
344     static const WCHAR latinW[] = {'l','a','t','i','n',0};
345     static const WCHAR latnW[] = {'-','L','a','t','n',0};
346     WCHAR *p;
347
348     TRACE("%s\n", debugstr_w(str));
349
350     name->country = name->charset = name->script = name->modifier = NULL;
351     name->lcid = MAKELCID( MAKELANGID(LANG_ENGLISH,SUBLANG_DEFAULT), SORT_DEFAULT );
352     name->matches = 0;
353     name->codepage = 0;
354     name->win_name[0] = 0;
355     lstrcpynW( name->lang, str, sizeof(name->lang)/sizeof(WCHAR) );
356
357     if (!(p = strpbrkW( name->lang, sepW )))
358     {
359         if (!strcmpW( name->lang, posixW ) || !strcmpW( name->lang, cW ))
360         {
361             name->matches = 4;  /* perfect match for default English lcid */
362             return;
363         }
364         strcpyW( name->win_name, name->lang );
365     }
366     else if (*p == '-')  /* Windows format */
367     {
368         strcpyW( name->win_name, name->lang );
369         *p++ = 0;
370         name->country = p;
371         if (!(p = strpbrkW( p, winsepW ))) goto done;
372         if (*p == '-')
373         {
374             *p++ = 0;
375             name->script = name->country;
376             name->country = p;
377             if (!(p = strpbrkW( p, winsepW ))) goto done;
378         }
379         *p++ = 0;
380         name->modifier = p;
381     }
382     else  /* Unix format */
383     {
384         if (*p == '_')
385         {
386             *p++ = 0;
387             name->country = p;
388             p = strpbrkW( p, sepW + 2 );
389         }
390         if (p && *p == '.')
391         {
392             *p++ = 0;
393             name->charset = p;
394             p = strchrW( p, '@' );
395         }
396         if (p)
397         {
398             *p++ = 0;
399             name->modifier = p;
400         }
401
402         if (name->charset)
403             name->codepage = find_charset( name->charset );
404
405         /* rebuild a Windows name if possible */
406
407         if (name->charset) goto done;  /* can't specify charset in Windows format */
408         if (name->modifier && strcmpW( name->modifier, latinW ))
409             goto done;  /* only Latn script supported for now */
410         strcpyW( name->win_name, name->lang );
411         if (name->modifier) strcatW( name->win_name, latnW );
412         if (name->country)
413         {
414             p = name->win_name + strlenW(name->win_name);
415             *p++ = '-';
416             strcpyW( p, name->country );
417         }
418     }
419 done:
420     EnumResourceLanguagesW( kernel32_handle, (LPCWSTR)RT_STRING, (LPCWSTR)LOCALE_ILANGUAGE,
421                             find_locale_id_callback, (LPARAM)name );
422 }
423
424
425 /***********************************************************************
426  *           convert_default_lcid
427  *
428  * Get the default LCID to use for a given lctype in GetLocaleInfo.
429  */
430 static LCID convert_default_lcid( LCID lcid, LCTYPE lctype )
431 {
432     if (lcid == LOCALE_SYSTEM_DEFAULT ||
433         lcid == LOCALE_USER_DEFAULT ||
434         lcid == LOCALE_NEUTRAL)
435     {
436         LCID default_id = 0;
437
438         switch(lctype & 0xffff)
439         {
440         case LOCALE_SSORTNAME:
441             default_id = lcid_LC_COLLATE;
442             break;
443
444         case LOCALE_FONTSIGNATURE:
445         case LOCALE_IDEFAULTANSICODEPAGE:
446         case LOCALE_IDEFAULTCODEPAGE:
447         case LOCALE_IDEFAULTEBCDICCODEPAGE:
448         case LOCALE_IDEFAULTMACCODEPAGE:
449         case LOCALE_IDEFAULTUNIXCODEPAGE:
450             default_id = lcid_LC_CTYPE;
451             break;
452
453         case LOCALE_ICURRDIGITS:
454         case LOCALE_ICURRENCY:
455         case LOCALE_IINTLCURRDIGITS:
456         case LOCALE_INEGCURR:
457         case LOCALE_INEGSEPBYSPACE:
458         case LOCALE_INEGSIGNPOSN:
459         case LOCALE_INEGSYMPRECEDES:
460         case LOCALE_IPOSSEPBYSPACE:
461         case LOCALE_IPOSSIGNPOSN:
462         case LOCALE_IPOSSYMPRECEDES:
463         case LOCALE_SCURRENCY:
464         case LOCALE_SINTLSYMBOL:
465         case LOCALE_SMONDECIMALSEP:
466         case LOCALE_SMONGROUPING:
467         case LOCALE_SMONTHOUSANDSEP:
468         case LOCALE_SNATIVECURRNAME:
469             default_id = lcid_LC_MONETARY;
470             break;
471
472         case LOCALE_IDIGITS:
473         case LOCALE_IDIGITSUBSTITUTION:
474         case LOCALE_ILZERO:
475         case LOCALE_INEGNUMBER:
476         case LOCALE_SDECIMAL:
477         case LOCALE_SGROUPING:
478         case LOCALE_SNAN:
479         case LOCALE_SNATIVEDIGITS:
480         case LOCALE_SNEGATIVESIGN:
481         case LOCALE_SNEGINFINITY:
482         case LOCALE_SPOSINFINITY:
483         case LOCALE_SPOSITIVESIGN:
484         case LOCALE_STHOUSAND:
485             default_id = lcid_LC_NUMERIC;
486             break;
487
488         case LOCALE_ICALENDARTYPE:
489         case LOCALE_ICENTURY:
490         case LOCALE_IDATE:
491         case LOCALE_IDAYLZERO:
492         case LOCALE_IFIRSTDAYOFWEEK:
493         case LOCALE_IFIRSTWEEKOFYEAR:
494         case LOCALE_ILDATE:
495         case LOCALE_IMONLZERO:
496         case LOCALE_IOPTIONALCALENDAR:
497         case LOCALE_ITIME:
498         case LOCALE_ITIMEMARKPOSN:
499         case LOCALE_ITLZERO:
500         case LOCALE_S1159:
501         case LOCALE_S2359:
502         case LOCALE_SABBREVDAYNAME1:
503         case LOCALE_SABBREVDAYNAME2:
504         case LOCALE_SABBREVDAYNAME3:
505         case LOCALE_SABBREVDAYNAME4:
506         case LOCALE_SABBREVDAYNAME5:
507         case LOCALE_SABBREVDAYNAME6:
508         case LOCALE_SABBREVDAYNAME7:
509         case LOCALE_SABBREVMONTHNAME1:
510         case LOCALE_SABBREVMONTHNAME2:
511         case LOCALE_SABBREVMONTHNAME3:
512         case LOCALE_SABBREVMONTHNAME4:
513         case LOCALE_SABBREVMONTHNAME5:
514         case LOCALE_SABBREVMONTHNAME6:
515         case LOCALE_SABBREVMONTHNAME7:
516         case LOCALE_SABBREVMONTHNAME8:
517         case LOCALE_SABBREVMONTHNAME9:
518         case LOCALE_SABBREVMONTHNAME10:
519         case LOCALE_SABBREVMONTHNAME11:
520         case LOCALE_SABBREVMONTHNAME12:
521         case LOCALE_SABBREVMONTHNAME13:
522         case LOCALE_SDATE:
523         case LOCALE_SDAYNAME1:
524         case LOCALE_SDAYNAME2:
525         case LOCALE_SDAYNAME3:
526         case LOCALE_SDAYNAME4:
527         case LOCALE_SDAYNAME5:
528         case LOCALE_SDAYNAME6:
529         case LOCALE_SDAYNAME7:
530         case LOCALE_SDURATION:
531         case LOCALE_SLONGDATE:
532         case LOCALE_SMONTHNAME1:
533         case LOCALE_SMONTHNAME2:
534         case LOCALE_SMONTHNAME3:
535         case LOCALE_SMONTHNAME4:
536         case LOCALE_SMONTHNAME5:
537         case LOCALE_SMONTHNAME6:
538         case LOCALE_SMONTHNAME7:
539         case LOCALE_SMONTHNAME8:
540         case LOCALE_SMONTHNAME9:
541         case LOCALE_SMONTHNAME10:
542         case LOCALE_SMONTHNAME11:
543         case LOCALE_SMONTHNAME12:
544         case LOCALE_SMONTHNAME13:
545         case LOCALE_SSHORTDATE:
546         case LOCALE_SSHORTESTDAYNAME1:
547         case LOCALE_SSHORTESTDAYNAME2:
548         case LOCALE_SSHORTESTDAYNAME3:
549         case LOCALE_SSHORTESTDAYNAME4:
550         case LOCALE_SSHORTESTDAYNAME5:
551         case LOCALE_SSHORTESTDAYNAME6:
552         case LOCALE_SSHORTESTDAYNAME7:
553         case LOCALE_STIME:
554         case LOCALE_STIMEFORMAT:
555         case LOCALE_SYEARMONTH:
556             default_id = lcid_LC_TIME;
557             break;
558
559         case LOCALE_IPAPERSIZE:
560             default_id = lcid_LC_PAPER;
561             break;
562
563         case LOCALE_IMEASURE:
564             default_id = lcid_LC_MEASUREMENT;
565             break;
566
567         case LOCALE_ICOUNTRY:
568             default_id = lcid_LC_TELEPHONE;
569             break;
570         }
571         if (default_id) lcid = default_id;
572     }
573     return ConvertDefaultLocale( lcid );
574 }
575
576 /***********************************************************************
577  *           is_genitive_name_supported
578  *
579  * Determine could LCTYPE basically support genitive name form or not.
580  */
581 static BOOL is_genitive_name_supported( LCTYPE lctype )
582 {
583     switch(lctype & 0xffff)
584     {
585     case LOCALE_SMONTHNAME1:
586     case LOCALE_SMONTHNAME2:
587     case LOCALE_SMONTHNAME3:
588     case LOCALE_SMONTHNAME4:
589     case LOCALE_SMONTHNAME5:
590     case LOCALE_SMONTHNAME6:
591     case LOCALE_SMONTHNAME7:
592     case LOCALE_SMONTHNAME8:
593     case LOCALE_SMONTHNAME9:
594     case LOCALE_SMONTHNAME10:
595     case LOCALE_SMONTHNAME11:
596     case LOCALE_SMONTHNAME12:
597     case LOCALE_SMONTHNAME13:
598          return TRUE;
599     default:
600          return FALSE;
601     }
602 }
603
604 /***********************************************************************
605  *              create_registry_key
606  *
607  * Create the Control Panel\\International registry key.
608  */
609 static inline HANDLE create_registry_key(void)
610 {
611     static const WCHAR cplW[] = {'C','o','n','t','r','o','l',' ','P','a','n','e','l',0};
612     static const WCHAR intlW[] = {'I','n','t','e','r','n','a','t','i','o','n','a','l',0};
613     OBJECT_ATTRIBUTES attr;
614     UNICODE_STRING nameW;
615     HANDLE cpl_key, hkey = 0;
616
617     if (RtlOpenCurrentUser( KEY_ALL_ACCESS, &hkey ) != STATUS_SUCCESS) return 0;
618
619     attr.Length = sizeof(attr);
620     attr.RootDirectory = hkey;
621     attr.ObjectName = &nameW;
622     attr.Attributes = 0;
623     attr.SecurityDescriptor = NULL;
624     attr.SecurityQualityOfService = NULL;
625     RtlInitUnicodeString( &nameW, cplW );
626
627     if (!NtCreateKey( &cpl_key, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL ))
628     {
629         NtClose( attr.RootDirectory );
630         attr.RootDirectory = cpl_key;
631         RtlInitUnicodeString( &nameW, intlW );
632         if (NtCreateKey( &hkey, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL )) hkey = 0;
633     }
634     NtClose( attr.RootDirectory );
635     return hkey;
636 }
637
638
639 /* update the registry settings for a given locale parameter */
640 /* return TRUE if an update was needed */
641 static BOOL locale_update_registry( HKEY hkey, const WCHAR *name, LCID lcid,
642                                     const LCTYPE *values, UINT nb_values )
643 {
644     static const WCHAR formatW[] = { '%','0','8','x',0 };
645     WCHAR bufferW[40];
646     UNICODE_STRING nameW;
647     DWORD count, i;
648
649     RtlInitUnicodeString( &nameW, name );
650     count = sizeof(bufferW);
651     if (!NtQueryValueKey(hkey, &nameW, KeyValuePartialInformation, bufferW, count, &count))
652     {
653         const KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)bufferW;
654         LPCWSTR text = (LPCWSTR)info->Data;
655
656         if (strtoulW( text, NULL, 16 ) == lcid) return FALSE; /* already set correctly */
657         TRACE( "updating registry, locale %s changed %s -> %08x\n",
658                debugstr_w(name), debugstr_w(text), lcid );
659     }
660     else TRACE( "updating registry, locale %s changed none -> %08x\n", debugstr_w(name), lcid );
661     sprintfW( bufferW, formatW, lcid );
662     NtSetValueKey( hkey, &nameW, 0, REG_SZ, bufferW, (strlenW(bufferW) + 1) * sizeof(WCHAR) );
663
664     for (i = 0; i < nb_values; i++)
665     {
666         GetLocaleInfoW( lcid, values[i] | LOCALE_NOUSEROVERRIDE, bufferW,
667                         sizeof(bufferW)/sizeof(WCHAR) );
668         SetLocaleInfoW( lcid, values[i], bufferW );
669     }
670     return TRUE;
671 }
672
673
674 /***********************************************************************
675  *              LOCALE_InitRegistry
676  *
677  * Update registry contents on startup if the user locale has changed.
678  * This simulates the action of the Windows control panel.
679  */
680 void LOCALE_InitRegistry(void)
681 {
682     static const WCHAR acpW[] = {'A','C','P',0};
683     static const WCHAR oemcpW[] = {'O','E','M','C','P',0};
684     static const WCHAR maccpW[] = {'M','A','C','C','P',0};
685     static const WCHAR localeW[] = {'L','o','c','a','l','e',0};
686     static const WCHAR lc_ctypeW[] = { 'L','C','_','C','T','Y','P','E',0 };
687     static const WCHAR lc_monetaryW[] = { 'L','C','_','M','O','N','E','T','A','R','Y',0 };
688     static const WCHAR lc_numericW[] = { 'L','C','_','N','U','M','E','R','I','C',0 };
689     static const WCHAR lc_timeW[] = { 'L','C','_','T','I','M','E',0 };
690     static const WCHAR lc_measurementW[] = { 'L','C','_','M','E','A','S','U','R','E','M','E','N','T',0 };
691     static const WCHAR lc_telephoneW[] = { 'L','C','_','T','E','L','E','P','H','O','N','E',0 };
692     static const WCHAR lc_paperW[] = { 'L','C','_','P','A','P','E','R',0};
693     static const struct
694     {
695         LPCWSTR name;
696         USHORT value;
697     } update_cp_values[] = {
698         { acpW, LOCALE_IDEFAULTANSICODEPAGE },
699         { oemcpW, LOCALE_IDEFAULTCODEPAGE },
700         { maccpW, LOCALE_IDEFAULTMACCODEPAGE }
701     };
702     static const LCTYPE lc_messages_values[] = {
703       LOCALE_SABBREVLANGNAME,
704       LOCALE_SCOUNTRY,
705       LOCALE_SLIST };
706     static const LCTYPE lc_monetary_values[] = {
707       LOCALE_SCURRENCY,
708       LOCALE_ICURRENCY,
709       LOCALE_INEGCURR,
710       LOCALE_ICURRDIGITS,
711       LOCALE_ILZERO,
712       LOCALE_SMONDECIMALSEP,
713       LOCALE_SMONGROUPING,
714       LOCALE_SMONTHOUSANDSEP };
715     static const LCTYPE lc_numeric_values[] = {
716       LOCALE_SDECIMAL,
717       LOCALE_STHOUSAND,
718       LOCALE_IDIGITS,
719       LOCALE_IDIGITSUBSTITUTION,
720       LOCALE_SNATIVEDIGITS,
721       LOCALE_INEGNUMBER,
722       LOCALE_SNEGATIVESIGN,
723       LOCALE_SPOSITIVESIGN,
724       LOCALE_SGROUPING };
725     static const LCTYPE lc_time_values[] = {
726       LOCALE_S1159,
727       LOCALE_S2359,
728       LOCALE_STIME,
729       LOCALE_ITIME,
730       LOCALE_ITLZERO,
731       LOCALE_SSHORTDATE,
732       LOCALE_SLONGDATE,
733       LOCALE_SDATE,
734       LOCALE_ITIMEMARKPOSN,
735       LOCALE_ICALENDARTYPE,
736       LOCALE_IFIRSTDAYOFWEEK,
737       LOCALE_IFIRSTWEEKOFYEAR,
738       LOCALE_STIMEFORMAT,
739       LOCALE_SYEARMONTH,
740       LOCALE_IDATE };
741     static const LCTYPE lc_measurement_values[] = { LOCALE_IMEASURE };
742     static const LCTYPE lc_telephone_values[] = { LOCALE_ICOUNTRY };
743     static const LCTYPE lc_paper_values[] = { LOCALE_IPAPERSIZE };
744
745     UNICODE_STRING nameW;
746     WCHAR bufferW[80];
747     DWORD count, i;
748     HANDLE hkey;
749     LCID lcid = GetUserDefaultLCID();
750
751     if (!(hkey = create_registry_key()))
752         return;  /* don't do anything if we can't create the registry key */
753
754     locale_update_registry( hkey, localeW, lcid_LC_MESSAGES, lc_messages_values,
755                             sizeof(lc_messages_values)/sizeof(lc_messages_values[0]) );
756     locale_update_registry( hkey, lc_monetaryW, lcid_LC_MONETARY, lc_monetary_values,
757                             sizeof(lc_monetary_values)/sizeof(lc_monetary_values[0]) );
758     locale_update_registry( hkey, lc_numericW, lcid_LC_NUMERIC, lc_numeric_values,
759                             sizeof(lc_numeric_values)/sizeof(lc_numeric_values[0]) );
760     locale_update_registry( hkey, lc_timeW, lcid_LC_TIME, lc_time_values,
761                             sizeof(lc_time_values)/sizeof(lc_time_values[0]) );
762     locale_update_registry( hkey, lc_measurementW, lcid_LC_MEASUREMENT, lc_measurement_values,
763                             sizeof(lc_measurement_values)/sizeof(lc_measurement_values[0]) );
764     locale_update_registry( hkey, lc_telephoneW, lcid_LC_TELEPHONE, lc_telephone_values,
765                             sizeof(lc_telephone_values)/sizeof(lc_telephone_values[0]) );
766     locale_update_registry( hkey, lc_paperW, lcid_LC_PAPER, lc_paper_values,
767                             sizeof(lc_paper_values)/sizeof(lc_paper_values[0]) );
768
769     if (locale_update_registry( hkey, lc_ctypeW, lcid_LC_CTYPE, NULL, 0 ))
770     {
771         static const WCHAR codepageW[] =
772             {'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
773              'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
774              'C','o','n','t','r','o','l','\\','N','l','s','\\','C','o','d','e','p','a','g','e',0};
775
776         OBJECT_ATTRIBUTES attr;
777         HANDLE nls_key;
778         DWORD len = 14;
779
780         RtlInitUnicodeString( &nameW, codepageW );
781         InitializeObjectAttributes( &attr, &nameW, 0, 0, NULL );
782         while (codepageW[len])
783         {
784             nameW.Length = len * sizeof(WCHAR);
785             if (NtCreateKey( &nls_key, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL )) break;
786             NtClose( nls_key );
787             len++;
788             while (codepageW[len] && codepageW[len] != '\\') len++;
789         }
790         nameW.Length = len * sizeof(WCHAR);
791         if (!NtCreateKey( &nls_key, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL ))
792         {
793             for (i = 0; i < sizeof(update_cp_values)/sizeof(update_cp_values[0]); i++)
794             {
795                 count = GetLocaleInfoW( lcid, update_cp_values[i].value | LOCALE_NOUSEROVERRIDE,
796                                         bufferW, sizeof(bufferW)/sizeof(WCHAR) );
797                 RtlInitUnicodeString( &nameW, update_cp_values[i].name );
798                 NtSetValueKey( nls_key, &nameW, 0, REG_SZ, bufferW, count * sizeof(WCHAR) );
799             }
800             NtClose( nls_key );
801         }
802     }
803
804     NtClose( hkey );
805 }
806
807
808 /***********************************************************************
809  *           setup_unix_locales
810  */
811 static UINT setup_unix_locales(void)
812 {
813     struct locale_name locale_name;
814     WCHAR buffer[128], ctype_buff[128];
815     char *locale;
816     UINT unix_cp = 0;
817
818     if ((locale = setlocale( LC_CTYPE, NULL )))
819     {
820         strcpynAtoW( ctype_buff, locale, sizeof(ctype_buff)/sizeof(WCHAR) );
821         parse_locale_name( ctype_buff, &locale_name );
822         lcid_LC_CTYPE = locale_name.lcid;
823         unix_cp = locale_name.codepage;
824     }
825     if (!lcid_LC_CTYPE)  /* this one needs a default value */
826         lcid_LC_CTYPE = MAKELCID( MAKELANGID(LANG_ENGLISH,SUBLANG_DEFAULT), SORT_DEFAULT );
827
828     TRACE( "got lcid %04x (%d matches) for LC_CTYPE=%s\n",
829            locale_name.lcid, locale_name.matches, debugstr_a(locale) );
830
831 #define GET_UNIX_LOCALE(cat) do \
832     if ((locale = setlocale( cat, NULL ))) \
833     { \
834         strcpynAtoW( buffer, locale, sizeof(buffer)/sizeof(WCHAR) ); \
835         if (!strcmpW( buffer, ctype_buff )) lcid_##cat = lcid_LC_CTYPE; \
836         else { \
837             parse_locale_name( buffer, &locale_name );  \
838             lcid_##cat = locale_name.lcid; \
839             TRACE( "got lcid %04x (%d matches) for " #cat "=%s\n",        \
840                    locale_name.lcid, locale_name.matches, debugstr_a(locale) ); \
841         } \
842     } while (0)
843
844     GET_UNIX_LOCALE( LC_COLLATE );
845     GET_UNIX_LOCALE( LC_MESSAGES );
846     GET_UNIX_LOCALE( LC_MONETARY );
847     GET_UNIX_LOCALE( LC_NUMERIC );
848     GET_UNIX_LOCALE( LC_TIME );
849 #ifdef LC_PAPER
850     GET_UNIX_LOCALE( LC_PAPER );
851 #endif
852 #ifdef LC_MEASUREMENT
853     GET_UNIX_LOCALE( LC_MEASUREMENT );
854 #endif
855 #ifdef LC_TELEPHONE
856     GET_UNIX_LOCALE( LC_TELEPHONE );
857 #endif
858
859 #undef GET_UNIX_LOCALE
860
861     return unix_cp;
862 }
863
864
865 /***********************************************************************
866  *              GetUserDefaultLangID (KERNEL32.@)
867  *
868  * Get the default language Id for the current user.
869  *
870  * PARAMS
871  *  None.
872  *
873  * RETURNS
874  *  The current LANGID of the default language for the current user.
875  */
876 LANGID WINAPI GetUserDefaultLangID(void)
877 {
878     return LANGIDFROMLCID(GetUserDefaultLCID());
879 }
880
881
882 /***********************************************************************
883  *              GetSystemDefaultLangID (KERNEL32.@)
884  *
885  * Get the default language Id for the system.
886  *
887  * PARAMS
888  *  None.
889  *
890  * RETURNS
891  *  The current LANGID of the default language for the system.
892  */
893 LANGID WINAPI GetSystemDefaultLangID(void)
894 {
895     return LANGIDFROMLCID(GetSystemDefaultLCID());
896 }
897
898
899 /***********************************************************************
900  *              GetUserDefaultLCID (KERNEL32.@)
901  *
902  * Get the default locale Id for the current user.
903  *
904  * PARAMS
905  *  None.
906  *
907  * RETURNS
908  *  The current LCID of the default locale for the current user.
909  */
910 LCID WINAPI GetUserDefaultLCID(void)
911 {
912     LCID lcid;
913     NtQueryDefaultLocale( TRUE, &lcid );
914     return lcid;
915 }
916
917
918 /***********************************************************************
919  *              GetSystemDefaultLCID (KERNEL32.@)
920  *
921  * Get the default locale Id for the system.
922  *
923  * PARAMS
924  *  None.
925  *
926  * RETURNS
927  *  The current LCID of the default locale for the system.
928  */
929 LCID WINAPI GetSystemDefaultLCID(void)
930 {
931     LCID lcid;
932     NtQueryDefaultLocale( FALSE, &lcid );
933     return lcid;
934 }
935
936
937 /***********************************************************************
938  *              GetUserDefaultUILanguage (KERNEL32.@)
939  *
940  * Get the default user interface language Id for the current user.
941  *
942  * PARAMS
943  *  None.
944  *
945  * RETURNS
946  *  The current LANGID of the default UI language for the current user.
947  */
948 LANGID WINAPI GetUserDefaultUILanguage(void)
949 {
950     LANGID lang;
951     NtQueryDefaultUILanguage( &lang );
952     return lang;
953 }
954
955
956 /***********************************************************************
957  *              GetSystemDefaultUILanguage (KERNEL32.@)
958  *
959  * Get the default user interface language Id for the system.
960  *
961  * PARAMS
962  *  None.
963  *
964  * RETURNS
965  *  The current LANGID of the default UI language for the system. This is
966  *  typically the same language used during the installation process.
967  */
968 LANGID WINAPI GetSystemDefaultUILanguage(void)
969 {
970     LANGID lang;
971     NtQueryInstallUILanguage( &lang );
972     return lang;
973 }
974
975
976 /***********************************************************************
977  *           LocaleNameToLCID  (KERNEL32.@)
978  */
979 LCID WINAPI LocaleNameToLCID( LPCWSTR name, DWORD flags )
980 {
981     struct locale_name locale_name;
982
983     if (flags) FIXME( "unsupported flags %x\n", flags );
984
985     parse_locale_name( name, &locale_name );
986
987     TRACE( "found lcid %x for %s, matches %d\n",
988            locale_name.lcid, debugstr_w(name), locale_name.matches );
989
990     if (!locale_name.matches)
991         WARN( "locale %s not recognized, defaulting to English\n", debugstr_w(name) );
992     else if (locale_name.matches == 1)
993         WARN( "locale %s not recognized, defaulting to %s\n",
994               debugstr_w(name), debugstr_w(locale_name.lang) );
995
996     return locale_name.lcid;
997 }
998
999
1000 /***********************************************************************
1001  *           LCIDToLocaleName  (KERNEL32.@)
1002  */
1003 INT WINAPI LCIDToLocaleName( LCID lcid, LPWSTR name, INT count, DWORD flags )
1004 {
1005     if (flags) FIXME( "unsupported flags %x\n", flags );
1006
1007     return GetLocaleInfoW( lcid, LOCALE_SNAME | LOCALE_NOUSEROVERRIDE, name, count );
1008 }
1009
1010
1011 /******************************************************************************
1012  *              get_locale_value_name
1013  *
1014  * Gets the registry value name for a given lctype.
1015  */
1016 static const WCHAR *get_locale_value_name( DWORD lctype )
1017 {
1018     static const WCHAR iCalendarTypeW[] = {'i','C','a','l','e','n','d','a','r','T','y','p','e',0};
1019     static const WCHAR iCountryW[] = {'i','C','o','u','n','t','r','y',0};
1020     static const WCHAR iCurrDigitsW[] = {'i','C','u','r','r','D','i','g','i','t','s',0};
1021     static const WCHAR iCurrencyW[] = {'i','C','u','r','r','e','n','c','y',0};
1022     static const WCHAR iDateW[] = {'i','D','a','t','e',0};
1023     static const WCHAR iDigitsW[] = {'i','D','i','g','i','t','s',0};
1024     static const WCHAR iFirstDayOfWeekW[] = {'i','F','i','r','s','t','D','a','y','O','f','W','e','e','k',0};
1025     static const WCHAR iFirstWeekOfYearW[] = {'i','F','i','r','s','t','W','e','e','k','O','f','Y','e','a','r',0};
1026     static const WCHAR iLDateW[] = {'i','L','D','a','t','e',0};
1027     static const WCHAR iLZeroW[] = {'i','L','Z','e','r','o',0};
1028     static const WCHAR iMeasureW[] = {'i','M','e','a','s','u','r','e',0};
1029     static const WCHAR iNegCurrW[] = {'i','N','e','g','C','u','r','r',0};
1030     static const WCHAR iNegNumberW[] = {'i','N','e','g','N','u','m','b','e','r',0};
1031     static const WCHAR iPaperSizeW[] = {'i','P','a','p','e','r','S','i','z','e',0};
1032     static const WCHAR iTLZeroW[] = {'i','T','L','Z','e','r','o',0};
1033     static const WCHAR iTimePrefixW[] = {'i','T','i','m','e','P','r','e','f','i','x',0};
1034     static const WCHAR iTimeW[] = {'i','T','i','m','e',0};
1035     static const WCHAR s1159W[] = {'s','1','1','5','9',0};
1036     static const WCHAR s2359W[] = {'s','2','3','5','9',0};
1037     static const WCHAR sCountryW[] = {'s','C','o','u','n','t','r','y',0};
1038     static const WCHAR sCurrencyW[] = {'s','C','u','r','r','e','n','c','y',0};
1039     static const WCHAR sDateW[] = {'s','D','a','t','e',0};
1040     static const WCHAR sDecimalW[] = {'s','D','e','c','i','m','a','l',0};
1041     static const WCHAR sGroupingW[] = {'s','G','r','o','u','p','i','n','g',0};
1042     static const WCHAR sLanguageW[] = {'s','L','a','n','g','u','a','g','e',0};
1043     static const WCHAR sListW[] = {'s','L','i','s','t',0};
1044     static const WCHAR sLongDateW[] = {'s','L','o','n','g','D','a','t','e',0};
1045     static const WCHAR sMonDecimalSepW[] = {'s','M','o','n','D','e','c','i','m','a','l','S','e','p',0};
1046     static const WCHAR sMonGroupingW[] = {'s','M','o','n','G','r','o','u','p','i','n','g',0};
1047     static const WCHAR sMonThousandSepW[] = {'s','M','o','n','T','h','o','u','s','a','n','d','S','e','p',0};
1048     static const WCHAR sNativeDigitsW[] = {'s','N','a','t','i','v','e','D','i','g','i','t','s',0};
1049     static const WCHAR sNegativeSignW[] = {'s','N','e','g','a','t','i','v','e','S','i','g','n',0};
1050     static const WCHAR sPositiveSignW[] = {'s','P','o','s','i','t','i','v','e','S','i','g','n',0};
1051     static const WCHAR sShortDateW[] = {'s','S','h','o','r','t','D','a','t','e',0};
1052     static const WCHAR sThousandW[] = {'s','T','h','o','u','s','a','n','d',0};
1053     static const WCHAR sTimeFormatW[] = {'s','T','i','m','e','F','o','r','m','a','t',0};
1054     static const WCHAR sTimeW[] = {'s','T','i','m','e',0};
1055     static const WCHAR sYearMonthW[] = {'s','Y','e','a','r','M','o','n','t','h',0};
1056     static const WCHAR NumShapeW[] = {'N','u','m','s','h','a','p','e',0};
1057
1058     switch (lctype)
1059     {
1060     /* These values are used by SetLocaleInfo and GetLocaleInfo, and
1061      * the values are stored in the registry, confirmed under Windows.
1062      */
1063     case LOCALE_ICALENDARTYPE:    return iCalendarTypeW;
1064     case LOCALE_ICURRDIGITS:      return iCurrDigitsW;
1065     case LOCALE_ICURRENCY:        return iCurrencyW;
1066     case LOCALE_IDIGITS:          return iDigitsW;
1067     case LOCALE_IFIRSTDAYOFWEEK:  return iFirstDayOfWeekW;
1068     case LOCALE_IFIRSTWEEKOFYEAR: return iFirstWeekOfYearW;
1069     case LOCALE_ILZERO:           return iLZeroW;
1070     case LOCALE_IMEASURE:         return iMeasureW;
1071     case LOCALE_INEGCURR:         return iNegCurrW;
1072     case LOCALE_INEGNUMBER:       return iNegNumberW;
1073     case LOCALE_IPAPERSIZE:       return iPaperSizeW;
1074     case LOCALE_ITIME:            return iTimeW;
1075     case LOCALE_S1159:            return s1159W;
1076     case LOCALE_S2359:            return s2359W;
1077     case LOCALE_SCURRENCY:        return sCurrencyW;
1078     case LOCALE_SDATE:            return sDateW;
1079     case LOCALE_SDECIMAL:         return sDecimalW;
1080     case LOCALE_SGROUPING:        return sGroupingW;
1081     case LOCALE_SLIST:            return sListW;
1082     case LOCALE_SLONGDATE:        return sLongDateW;
1083     case LOCALE_SMONDECIMALSEP:   return sMonDecimalSepW;
1084     case LOCALE_SMONGROUPING:     return sMonGroupingW;
1085     case LOCALE_SMONTHOUSANDSEP:  return sMonThousandSepW;
1086     case LOCALE_SNEGATIVESIGN:    return sNegativeSignW;
1087     case LOCALE_SPOSITIVESIGN:    return sPositiveSignW;
1088     case LOCALE_SSHORTDATE:       return sShortDateW;
1089     case LOCALE_STHOUSAND:        return sThousandW;
1090     case LOCALE_STIME:            return sTimeW;
1091     case LOCALE_STIMEFORMAT:      return sTimeFormatW;
1092     case LOCALE_SYEARMONTH:       return sYearMonthW;
1093
1094     /* The following are not listed under MSDN as supported,
1095      * but seem to be used and also stored in the registry.
1096      */
1097     case LOCALE_ICOUNTRY:         return iCountryW;
1098     case LOCALE_IDATE:            return iDateW;
1099     case LOCALE_ILDATE:           return iLDateW;
1100     case LOCALE_ITLZERO:          return iTLZeroW;
1101     case LOCALE_SCOUNTRY:         return sCountryW;
1102     case LOCALE_SABBREVLANGNAME:  return sLanguageW;
1103
1104     /* The following are used in XP and later */
1105     case LOCALE_IDIGITSUBSTITUTION: return NumShapeW;
1106     case LOCALE_SNATIVEDIGITS:      return sNativeDigitsW;
1107     case LOCALE_ITIMEMARKPOSN:      return iTimePrefixW;
1108     }
1109     return NULL;
1110 }
1111
1112
1113 /******************************************************************************
1114  *              get_registry_locale_info
1115  *
1116  * Retrieve user-modified locale info from the registry.
1117  * Return length, 0 on error, -1 if not found.
1118  */
1119 static INT get_registry_locale_info( LPCWSTR value, LPWSTR buffer, INT len )
1120 {
1121     DWORD size;
1122     INT ret;
1123     HANDLE hkey;
1124     NTSTATUS status;
1125     UNICODE_STRING nameW;
1126     KEY_VALUE_PARTIAL_INFORMATION *info;
1127     static const int info_size = FIELD_OFFSET(KEY_VALUE_PARTIAL_INFORMATION, Data);
1128
1129     if (!(hkey = create_registry_key())) return -1;
1130
1131     RtlInitUnicodeString( &nameW, value );
1132     size = info_size + len * sizeof(WCHAR);
1133
1134     if (!(info = HeapAlloc( GetProcessHeap(), 0, size )))
1135     {
1136         NtClose( hkey );
1137         SetLastError( ERROR_NOT_ENOUGH_MEMORY );
1138         return 0;
1139     }
1140
1141     status = NtQueryValueKey( hkey, &nameW, KeyValuePartialInformation, info, size, &size );
1142
1143     if (!status)
1144     {
1145         ret = (size - info_size) / sizeof(WCHAR);
1146         /* append terminating null if needed */
1147         if (!ret || ((WCHAR *)info->Data)[ret-1])
1148         {
1149             if (ret < len || !buffer) ret++;
1150             else
1151             {
1152                 SetLastError( ERROR_INSUFFICIENT_BUFFER );
1153                 ret = 0;
1154             }
1155         }
1156         if (ret && buffer)
1157         {
1158             memcpy( buffer, info->Data, (ret-1) * sizeof(WCHAR) );
1159             buffer[ret-1] = 0;
1160         }
1161     }
1162     else if (status == STATUS_BUFFER_OVERFLOW && !buffer)
1163     {
1164         ret = (size - info_size) / sizeof(WCHAR) + 1;
1165     }
1166     else if (status == STATUS_OBJECT_NAME_NOT_FOUND)
1167     {
1168         ret = -1;
1169     }
1170     else
1171     {
1172         SetLastError( RtlNtStatusToDosError(status) );
1173         ret = 0;
1174     }
1175     NtClose( hkey );
1176     HeapFree( GetProcessHeap(), 0, info );
1177     return ret;
1178 }
1179
1180
1181 /******************************************************************************
1182  *              GetLocaleInfoA (KERNEL32.@)
1183  *
1184  * Get information about an aspect of a locale.
1185  *
1186  * PARAMS
1187  *  lcid   [I] LCID of the locale
1188  *  lctype [I] LCTYPE_ flags from "winnls.h"
1189  *  buffer [O] Destination for the information
1190  *  len    [I] Length of buffer in characters
1191  *
1192  * RETURNS
1193  *  Success: The size of the data requested. If buffer is non-NULL, it is filled
1194  *           with the information.
1195  *  Failure: 0. Use GetLastError() to determine the cause.
1196  *
1197  * NOTES
1198  *  - LOCALE_NEUTRAL is equal to LOCALE_SYSTEM_DEFAULT
1199  *  - The string returned is NUL terminated, except for LOCALE_FONTSIGNATURE,
1200  *    which is a bit string.
1201  */
1202 INT WINAPI GetLocaleInfoA( LCID lcid, LCTYPE lctype, LPSTR buffer, INT len )
1203 {
1204     WCHAR *bufferW;
1205     INT lenW, ret;
1206
1207     TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d)\n", lcid, lctype, buffer, len );
1208
1209     if (len < 0 || (len && !buffer))
1210     {
1211         SetLastError( ERROR_INVALID_PARAMETER );
1212         return 0;
1213     }
1214     if (lctype & LOCALE_RETURN_GENITIVE_NAMES )
1215     {
1216         SetLastError( ERROR_INVALID_FLAGS );
1217         return 0;
1218     }
1219
1220     if (!len) buffer = NULL;
1221
1222     if (!(lenW = GetLocaleInfoW( lcid, lctype, NULL, 0 ))) return 0;
1223
1224     if (!(bufferW = HeapAlloc( GetProcessHeap(), 0, lenW * sizeof(WCHAR) )))
1225     {
1226         SetLastError( ERROR_NOT_ENOUGH_MEMORY );
1227         return 0;
1228     }
1229     if ((ret = GetLocaleInfoW( lcid, lctype, bufferW, lenW )))
1230     {
1231         if ((lctype & LOCALE_RETURN_NUMBER) ||
1232             ((lctype & ~LOCALE_LOCALEINFOFLAGSMASK) == LOCALE_FONTSIGNATURE))
1233         {
1234             /* it's not an ASCII string, just bytes */
1235             ret *= sizeof(WCHAR);
1236             if (buffer)
1237             {
1238                 if (ret <= len) memcpy( buffer, bufferW, ret );
1239                 else
1240                 {
1241                     SetLastError( ERROR_INSUFFICIENT_BUFFER );
1242                     ret = 0;
1243                 }
1244             }
1245         }
1246         else
1247         {
1248             UINT codepage = CP_ACP;
1249             if (!(lctype & LOCALE_USE_CP_ACP)) codepage = get_lcid_codepage( lcid );
1250             ret = WideCharToMultiByte( codepage, 0, bufferW, ret, buffer, len, NULL, NULL );
1251         }
1252     }
1253     HeapFree( GetProcessHeap(), 0, bufferW );
1254     return ret;
1255 }
1256
1257
1258 /******************************************************************************
1259  *              GetLocaleInfoW (KERNEL32.@)
1260  *
1261  * See GetLocaleInfoA.
1262  */
1263 INT WINAPI GetLocaleInfoW( LCID lcid, LCTYPE lctype, LPWSTR buffer, INT len )
1264 {
1265     LANGID lang_id;
1266     HRSRC hrsrc;
1267     HGLOBAL hmem;
1268     INT ret;
1269     UINT lcflags;
1270     const WCHAR *p;
1271     unsigned int i;
1272
1273     if (len < 0 || (len && !buffer))
1274     {
1275         SetLastError( ERROR_INVALID_PARAMETER );
1276         return 0;
1277     }
1278     if (lctype & LOCALE_RETURN_GENITIVE_NAMES &&
1279        !is_genitive_name_supported( lctype ))
1280     {
1281         SetLastError( ERROR_INVALID_FLAGS );
1282         return 0;
1283     }
1284
1285     if (!len) buffer = NULL;
1286
1287     lcid = convert_default_lcid( lcid, lctype );
1288
1289     lcflags = lctype & LOCALE_LOCALEINFOFLAGSMASK;
1290     lctype &= 0xffff;
1291
1292     TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d)\n", lcid, lctype, buffer, len );
1293
1294     /* first check for overrides in the registry */
1295
1296     if (!(lcflags & LOCALE_NOUSEROVERRIDE) &&
1297         lcid == convert_default_lcid( LOCALE_USER_DEFAULT, lctype ))
1298     {
1299         const WCHAR *value = get_locale_value_name(lctype);
1300
1301         if (value)
1302         {
1303             if (lcflags & LOCALE_RETURN_NUMBER)
1304             {
1305                 WCHAR tmp[16];
1306                 ret = get_registry_locale_info( value, tmp, sizeof(tmp)/sizeof(WCHAR) );
1307                 if (ret > 0)
1308                 {
1309                     WCHAR *end;
1310                     UINT number = strtolW( tmp, &end, 10 );
1311                     if (*end)  /* invalid number */
1312                     {
1313                         SetLastError( ERROR_INVALID_FLAGS );
1314                         return 0;
1315                     }
1316                     ret = sizeof(UINT)/sizeof(WCHAR);
1317                     if (!buffer) return ret;
1318                     if (ret > len)
1319                     {
1320                         SetLastError( ERROR_INSUFFICIENT_BUFFER );
1321                         return 0;
1322                     }
1323                     memcpy( buffer, &number, sizeof(number) );
1324                 }
1325             }
1326             else ret = get_registry_locale_info( value, buffer, len );
1327
1328             if (ret != -1) return ret;
1329         }
1330     }
1331
1332     /* now load it from kernel resources */
1333
1334     lang_id = LANGIDFROMLCID( lcid );
1335
1336     /* replace SUBLANG_NEUTRAL by SUBLANG_DEFAULT */
1337     if (SUBLANGID(lang_id) == SUBLANG_NEUTRAL)
1338         lang_id = MAKELANGID(PRIMARYLANGID(lang_id), SUBLANG_DEFAULT);
1339
1340     if (!(hrsrc = FindResourceExW( kernel32_handle, (LPWSTR)RT_STRING,
1341                                    ULongToPtr((lctype >> 4) + 1), lang_id )))
1342     {
1343         SetLastError( ERROR_INVALID_FLAGS );  /* no such lctype */
1344         return 0;
1345     }
1346     if (!(hmem = LoadResource( kernel32_handle, hrsrc )))
1347         return 0;
1348
1349     p = LockResource( hmem );
1350     for (i = 0; i < (lctype & 0x0f); i++) p += *p + 1;
1351
1352     if (lcflags & LOCALE_RETURN_NUMBER) ret = sizeof(UINT)/sizeof(WCHAR);
1353     else if (is_genitive_name_supported( lctype ) && *p)
1354     {
1355         /* genitive form's stored after a null separator from a nominative */
1356         for (i = 1; i <= *p; i++) if (!p[i]) break;
1357
1358         if (i <= *p && (lcflags & LOCALE_RETURN_GENITIVE_NAMES))
1359         {
1360             ret = *p - i + 1;
1361             p += i;
1362         }
1363         else ret = i;
1364     }
1365     else
1366         ret = (lctype == LOCALE_FONTSIGNATURE) ? *p : *p + 1;
1367
1368     if (!buffer) return ret;
1369
1370     if (ret > len)
1371     {
1372         SetLastError( ERROR_INSUFFICIENT_BUFFER );
1373         return 0;
1374     }
1375
1376     if (lcflags & LOCALE_RETURN_NUMBER)
1377     {
1378         UINT number;
1379         WCHAR *end, *tmp = HeapAlloc( GetProcessHeap(), 0, (*p + 1) * sizeof(WCHAR) );
1380         if (!tmp) return 0;
1381         memcpy( tmp, p + 1, *p * sizeof(WCHAR) );
1382         tmp[*p] = 0;
1383         number = strtolW( tmp, &end, 10 );
1384         if (!*end)
1385             memcpy( buffer, &number, sizeof(number) );
1386         else  /* invalid number */
1387         {
1388             SetLastError( ERROR_INVALID_FLAGS );
1389             ret = 0;
1390         }
1391         HeapFree( GetProcessHeap(), 0, tmp );
1392
1393         TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d) returning number %d\n",
1394                lcid, lctype, buffer, len, number );
1395     }
1396     else
1397     {
1398         memcpy( buffer, p + 1, ret * sizeof(WCHAR) );
1399         if (lctype != LOCALE_FONTSIGNATURE) buffer[ret-1] = 0;
1400
1401         TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d) returning %d %s\n",
1402                lcid, lctype, buffer, len, ret, debugstr_w(buffer) );
1403     }
1404     return ret;
1405 }
1406
1407
1408 /******************************************************************************
1409  *              SetLocaleInfoA  [KERNEL32.@]
1410  *
1411  * Set information about an aspect of a locale.
1412  *
1413  * PARAMS
1414  *  lcid   [I] LCID of the locale
1415  *  lctype [I] LCTYPE_ flags from "winnls.h"
1416  *  data   [I] Information to set
1417  *
1418  * RETURNS
1419  *  Success: TRUE. The information given will be returned by GetLocaleInfoA()
1420  *           whenever it is called without LOCALE_NOUSEROVERRIDE.
1421  *  Failure: FALSE. Use GetLastError() to determine the cause.
1422  *
1423  * NOTES
1424  *  - Values are only be set for the current user locale; the system locale
1425  *  settings cannot be changed.
1426  *  - Any settings changed by this call are lost when the locale is changed by
1427  *  the control panel (in Wine, this happens every time you change LANG).
1428  *  - The native implementation of this function does not check that lcid matches
1429  *  the current user locale, and simply sets the new values. Wine warns you in
1430  *  this case, but behaves the same.
1431  */
1432 BOOL WINAPI SetLocaleInfoA(LCID lcid, LCTYPE lctype, LPCSTR data)
1433 {
1434     UINT codepage = CP_ACP;
1435     WCHAR *strW;
1436     DWORD len;
1437     BOOL ret;
1438
1439     if (!(lctype & LOCALE_USE_CP_ACP)) codepage = get_lcid_codepage( lcid );
1440
1441     if (!data)
1442     {
1443         SetLastError( ERROR_INVALID_PARAMETER );
1444         return FALSE;
1445     }
1446     len = MultiByteToWideChar( codepage, 0, data, -1, NULL, 0 );
1447     if (!(strW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) )))
1448     {
1449         SetLastError( ERROR_NOT_ENOUGH_MEMORY );
1450         return FALSE;
1451     }
1452     MultiByteToWideChar( codepage, 0, data, -1, strW, len );
1453     ret = SetLocaleInfoW( lcid, lctype, strW );
1454     HeapFree( GetProcessHeap(), 0, strW );
1455     return ret;
1456 }
1457
1458
1459 /******************************************************************************
1460  *              SetLocaleInfoW  (KERNEL32.@)
1461  *
1462  * See SetLocaleInfoA.
1463  */
1464 BOOL WINAPI SetLocaleInfoW( LCID lcid, LCTYPE lctype, LPCWSTR data )
1465 {
1466     const WCHAR *value;
1467     static const WCHAR intlW[] = {'i','n','t','l',0 };
1468     UNICODE_STRING valueW;
1469     NTSTATUS status;
1470     HANDLE hkey;
1471
1472     lctype &= 0xffff;
1473     value = get_locale_value_name( lctype );
1474
1475     if (!data || !value)
1476     {
1477         SetLastError( ERROR_INVALID_PARAMETER );
1478         return FALSE;
1479     }
1480
1481     if (lctype == LOCALE_IDATE || lctype == LOCALE_ILDATE)
1482     {
1483         SetLastError( ERROR_INVALID_FLAGS );
1484         return FALSE;
1485     }
1486
1487     TRACE("setting %x (%s) to %s\n", lctype, debugstr_w(value), debugstr_w(data) );
1488
1489     /* FIXME: should check that data to set is sane */
1490
1491     /* FIXME: profile functions should map to registry */
1492     WriteProfileStringW( intlW, value, data );
1493
1494     if (!(hkey = create_registry_key())) return FALSE;
1495     RtlInitUnicodeString( &valueW, value );
1496     status = NtSetValueKey( hkey, &valueW, 0, REG_SZ, data, (strlenW(data)+1)*sizeof(WCHAR) );
1497
1498     if (lctype == LOCALE_SSHORTDATE || lctype == LOCALE_SLONGDATE)
1499     {
1500       /* Set I-value from S value */
1501       WCHAR *lpD, *lpM, *lpY;
1502       WCHAR szBuff[2];
1503
1504       lpD = strrchrW(data, 'd');
1505       lpM = strrchrW(data, 'M');
1506       lpY = strrchrW(data, 'y');
1507
1508       if (lpD <= lpM)
1509       {
1510         szBuff[0] = '1'; /* D-M-Y */
1511       }
1512       else
1513       {
1514         if (lpY <= lpM)
1515           szBuff[0] = '2'; /* Y-M-D */
1516         else
1517           szBuff[0] = '0'; /* M-D-Y */
1518       }
1519
1520       szBuff[1] = '\0';
1521
1522       if (lctype == LOCALE_SSHORTDATE)
1523         lctype = LOCALE_IDATE;
1524       else
1525         lctype = LOCALE_ILDATE;
1526
1527       value = get_locale_value_name( lctype );
1528
1529       WriteProfileStringW( intlW, value, szBuff );
1530
1531       RtlInitUnicodeString( &valueW, value );
1532       status = NtSetValueKey( hkey, &valueW, 0, REG_SZ, szBuff, sizeof(szBuff) );
1533     }
1534
1535     NtClose( hkey );
1536
1537     if (status) SetLastError( RtlNtStatusToDosError(status) );
1538     return !status;
1539 }
1540
1541
1542 /******************************************************************************
1543  *              GetACP   (KERNEL32.@)
1544  *
1545  * Get the current Ansi code page Id for the system.
1546  *
1547  * PARAMS
1548  *  None.
1549  *
1550  * RETURNS
1551  *    The current Ansi code page identifier for the system.
1552  */
1553 UINT WINAPI GetACP(void)
1554 {
1555     assert( ansi_cptable );
1556     return ansi_cptable->info.codepage;
1557 }
1558
1559
1560 /******************************************************************************
1561  *              SetCPGlobal   (KERNEL32.@)
1562  *
1563  * Set the current Ansi code page Id for the system.
1564  *
1565  * PARAMS
1566  *    acp [I] code page ID to be the new ACP.
1567  *
1568  * RETURNS
1569  *    The previous ACP.
1570  */
1571 UINT WINAPI SetCPGlobal( UINT acp )
1572 {
1573     UINT ret = GetACP();
1574     const union cptable *new_cptable = wine_cp_get_table( acp );
1575
1576     if (new_cptable) ansi_cptable = new_cptable;
1577     return ret;
1578 }
1579
1580
1581 /***********************************************************************
1582  *              GetOEMCP   (KERNEL32.@)
1583  *
1584  * Get the current OEM code page Id for the system.
1585  *
1586  * PARAMS
1587  *  None.
1588  *
1589  * RETURNS
1590  *    The current OEM code page identifier for the system.
1591  */
1592 UINT WINAPI GetOEMCP(void)
1593 {
1594     assert( oem_cptable );
1595     return oem_cptable->info.codepage;
1596 }
1597
1598
1599 /***********************************************************************
1600  *           IsValidCodePage   (KERNEL32.@)
1601  *
1602  * Determine if a given code page identifier is valid.
1603  *
1604  * PARAMS
1605  *  codepage [I] Code page Id to verify.
1606  *
1607  * RETURNS
1608  *  TRUE, If codepage is valid and available on the system,
1609  *  FALSE otherwise.
1610  */
1611 BOOL WINAPI IsValidCodePage( UINT codepage )
1612 {
1613     switch(codepage) {
1614     case CP_UTF7:
1615     case CP_UTF8:
1616         return TRUE;
1617     default:
1618         return wine_cp_get_table( codepage ) != NULL;
1619     }
1620 }
1621
1622
1623 /***********************************************************************
1624  *           IsDBCSLeadByteEx   (KERNEL32.@)
1625  *
1626  * Determine if a character is a lead byte in a given code page.
1627  *
1628  * PARAMS
1629  *  codepage [I] Code page for the test.
1630  *  testchar [I] Character to test
1631  *
1632  * RETURNS
1633  *  TRUE, if testchar is a lead byte in codepage,
1634  *  FALSE otherwise.
1635  */
1636 BOOL WINAPI IsDBCSLeadByteEx( UINT codepage, BYTE testchar )
1637 {
1638     const union cptable *table = get_codepage_table( codepage );
1639     return table && wine_is_dbcs_leadbyte( table, testchar );
1640 }
1641
1642
1643 /***********************************************************************
1644  *           IsDBCSLeadByte   (KERNEL32.@)
1645  *           IsDBCSLeadByte   (KERNEL.207)
1646  *
1647  * Determine if a character is a lead byte.
1648  *
1649  * PARAMS
1650  *  testchar [I] Character to test
1651  *
1652  * RETURNS
1653  *  TRUE, if testchar is a lead byte in the Ansii code page,
1654  *  FALSE otherwise.
1655  */
1656 BOOL WINAPI IsDBCSLeadByte( BYTE testchar )
1657 {
1658     if (!ansi_cptable) return FALSE;
1659     return wine_is_dbcs_leadbyte( ansi_cptable, testchar );
1660 }
1661
1662
1663 /***********************************************************************
1664  *           GetCPInfo   (KERNEL32.@)
1665  *
1666  * Get information about a code page.
1667  *
1668  * PARAMS
1669  *  codepage [I] Code page number
1670  *  cpinfo   [O] Destination for code page information
1671  *
1672  * RETURNS
1673  *  Success: TRUE. cpinfo is updated with the information about codepage.
1674  *  Failure: FALSE, if codepage is invalid or cpinfo is NULL.
1675  */
1676 BOOL WINAPI GetCPInfo( UINT codepage, LPCPINFO cpinfo )
1677 {
1678     const union cptable *table;
1679
1680     if (!cpinfo)
1681     {
1682         SetLastError( ERROR_INVALID_PARAMETER );
1683         return FALSE;
1684     }
1685
1686     if (!(table = get_codepage_table( codepage )))
1687     {
1688         switch(codepage)
1689         {
1690             case CP_UTF7:
1691             case CP_UTF8:
1692                 cpinfo->DefaultChar[0] = 0x3f;
1693                 cpinfo->DefaultChar[1] = 0;
1694                 cpinfo->LeadByte[0] = cpinfo->LeadByte[1] = 0;
1695                 cpinfo->MaxCharSize = (codepage == CP_UTF7) ? 5 : 4;
1696                 return TRUE;
1697         }
1698
1699         SetLastError( ERROR_INVALID_PARAMETER );
1700         return FALSE;
1701     }
1702     if (table->info.def_char & 0xff00)
1703     {
1704         cpinfo->DefaultChar[0] = (table->info.def_char & 0xff00) >> 8;
1705         cpinfo->DefaultChar[1] = table->info.def_char & 0x00ff;
1706     }
1707     else
1708     {
1709         cpinfo->DefaultChar[0] = table->info.def_char & 0xff;
1710         cpinfo->DefaultChar[1] = 0;
1711     }
1712     if ((cpinfo->MaxCharSize = table->info.char_size) == 2)
1713         memcpy( cpinfo->LeadByte, table->dbcs.lead_bytes, sizeof(cpinfo->LeadByte) );
1714     else
1715         cpinfo->LeadByte[0] = cpinfo->LeadByte[1] = 0;
1716
1717     return TRUE;
1718 }
1719
1720 /***********************************************************************
1721  *           GetCPInfoExA   (KERNEL32.@)
1722  *
1723  * Get extended information about a code page.
1724  *
1725  * PARAMS
1726  *  codepage [I] Code page number
1727  *  dwFlags  [I] Reserved, must to 0.
1728  *  cpinfo   [O] Destination for code page information
1729  *
1730  * RETURNS
1731  *  Success: TRUE. cpinfo is updated with the information about codepage.
1732  *  Failure: FALSE, if codepage is invalid or cpinfo is NULL.
1733  */
1734 BOOL WINAPI GetCPInfoExA( UINT codepage, DWORD dwFlags, LPCPINFOEXA cpinfo )
1735 {
1736     CPINFOEXW cpinfoW;
1737
1738     if (!GetCPInfoExW( codepage, dwFlags, &cpinfoW ))
1739       return FALSE;
1740
1741     /* the layout is the same except for CodePageName */
1742     memcpy(cpinfo, &cpinfoW, sizeof(CPINFOEXA));
1743     WideCharToMultiByte(CP_ACP, 0, cpinfoW.CodePageName, -1, cpinfo->CodePageName, sizeof(cpinfo->CodePageName), NULL, NULL);
1744     return TRUE;
1745 }
1746
1747 /***********************************************************************
1748  *           GetCPInfoExW   (KERNEL32.@)
1749  *
1750  * Unicode version of GetCPInfoExA.
1751  */
1752 BOOL WINAPI GetCPInfoExW( UINT codepage, DWORD dwFlags, LPCPINFOEXW cpinfo )
1753 {
1754     if (!GetCPInfo( codepage, (LPCPINFO)cpinfo ))
1755       return FALSE;
1756
1757     switch(codepage)
1758     {
1759         case CP_UTF7:
1760         {
1761             static const WCHAR utf7[] = {'U','n','i','c','o','d','e',' ','(','U','T','F','-','7',')',0};
1762
1763             cpinfo->CodePage = CP_UTF7;
1764             cpinfo->UnicodeDefaultChar = 0x3f;
1765             strcpyW(cpinfo->CodePageName, utf7);
1766             break;
1767         }
1768
1769         case CP_UTF8:
1770         {
1771             static const WCHAR utf8[] = {'U','n','i','c','o','d','e',' ','(','U','T','F','-','8',')',0};
1772
1773             cpinfo->CodePage = CP_UTF8;
1774             cpinfo->UnicodeDefaultChar = 0x3f;
1775             strcpyW(cpinfo->CodePageName, utf8);
1776             break;
1777         }
1778
1779         default:
1780         {
1781             const union cptable *table = get_codepage_table( codepage );
1782
1783             cpinfo->CodePage = table->info.codepage;
1784             cpinfo->UnicodeDefaultChar = table->info.def_unicode_char;
1785             MultiByteToWideChar( CP_ACP, 0, table->info.name, -1, cpinfo->CodePageName,
1786                                  sizeof(cpinfo->CodePageName)/sizeof(WCHAR));
1787             break;
1788         }
1789     }
1790     return TRUE;
1791 }
1792
1793 /***********************************************************************
1794  *              EnumSystemCodePagesA   (KERNEL32.@)
1795  *
1796  * Call a user defined function for every code page installed on the system.
1797  *
1798  * PARAMS
1799  *   lpfnCodePageEnum [I] User CODEPAGE_ENUMPROC to call with each found code page
1800  *   flags            [I] Reserved, set to 0.
1801  *
1802  * RETURNS
1803  *  TRUE, If all code pages have been enumerated, or
1804  *  FALSE if lpfnCodePageEnum returned FALSE to stop the enumeration.
1805  */
1806 BOOL WINAPI EnumSystemCodePagesA( CODEPAGE_ENUMPROCA lpfnCodePageEnum, DWORD flags )
1807 {
1808     const union cptable *table;
1809     char buffer[10];
1810     int index = 0;
1811
1812     for (;;)
1813     {
1814         if (!(table = wine_cp_enum_table( index++ ))) break;
1815         sprintf( buffer, "%d", table->info.codepage );
1816         if (!lpfnCodePageEnum( buffer )) break;
1817     }
1818     return TRUE;
1819 }
1820
1821
1822 /***********************************************************************
1823  *              EnumSystemCodePagesW   (KERNEL32.@)
1824  *
1825  * See EnumSystemCodePagesA.
1826  */
1827 BOOL WINAPI EnumSystemCodePagesW( CODEPAGE_ENUMPROCW lpfnCodePageEnum, DWORD flags )
1828 {
1829     const union cptable *table;
1830     WCHAR buffer[10], *p;
1831     int page, index = 0;
1832
1833     for (;;)
1834     {
1835         if (!(table = wine_cp_enum_table( index++ ))) break;
1836         p = buffer + sizeof(buffer)/sizeof(WCHAR);
1837         *--p = 0;
1838         page = table->info.codepage;
1839         do
1840         {
1841             *--p = '0' + (page % 10);
1842             page /= 10;
1843         } while( page );
1844         if (!lpfnCodePageEnum( p )) break;
1845     }
1846     return TRUE;
1847 }
1848
1849
1850 /***********************************************************************
1851  *              MultiByteToWideChar   (KERNEL32.@)
1852  *
1853  * Convert a multibyte character string into a Unicode string.
1854  *
1855  * PARAMS
1856  *   page   [I] Codepage character set to convert from
1857  *   flags  [I] Character mapping flags
1858  *   src    [I] Source string buffer
1859  *   srclen [I] Length of src (in bytes), or -1 if src is NUL terminated
1860  *   dst    [O] Destination buffer
1861  *   dstlen [I] Length of dst (in WCHARs), or 0 to compute the required length
1862  *
1863  * RETURNS
1864  *   Success: If dstlen > 0, the number of characters written to dst.
1865  *            If dstlen == 0, the number of characters needed to perform the
1866  *            conversion. In both cases the count includes the terminating NUL.
1867  *   Failure: 0. Use GetLastError() to determine the cause. Possible errors are
1868  *            ERROR_INSUFFICIENT_BUFFER, if not enough space is available in dst
1869  *            and dstlen != 0; ERROR_INVALID_PARAMETER,  if an invalid parameter
1870  *            is passed, and ERROR_NO_UNICODE_TRANSLATION if no translation is
1871  *            possible for src.
1872  */
1873 INT WINAPI MultiByteToWideChar( UINT page, DWORD flags, LPCSTR src, INT srclen,
1874                                 LPWSTR dst, INT dstlen )
1875 {
1876     const union cptable *table;
1877     int ret;
1878
1879     if (!src || (!dst && dstlen))
1880     {
1881         SetLastError( ERROR_INVALID_PARAMETER );
1882         return 0;
1883     }
1884
1885     if (srclen < 0) srclen = strlen(src) + 1;
1886
1887     switch(page)
1888     {
1889     case CP_SYMBOL:
1890         if( flags)
1891         {
1892             SetLastError( ERROR_INVALID_PARAMETER );
1893             return 0;
1894         }
1895         ret = wine_cpsymbol_mbstowcs( src, srclen, dst, dstlen );
1896         break;
1897     case CP_UTF7:
1898         FIXME("UTF-7 not supported\n");
1899         SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
1900         return 0;
1901     case CP_UNIXCP:
1902         if (unix_cptable)
1903         {
1904             ret = wine_cp_mbstowcs( unix_cptable, flags, src, srclen, dst, dstlen );
1905             break;
1906         }
1907 #ifdef __APPLE__
1908         flags |= MB_COMPOSITE;  /* work around broken Mac OS X filesystem that enforces decomposed Unicode */
1909 #endif
1910         /* fall through */
1911     case CP_UTF8:
1912         ret = wine_utf8_mbstowcs( flags, src, srclen, dst, dstlen );
1913         break;
1914     default:
1915         if (!(table = get_codepage_table( page )))
1916         {
1917             SetLastError( ERROR_INVALID_PARAMETER );
1918             return 0;
1919         }
1920         ret = wine_cp_mbstowcs( table, flags, src, srclen, dst, dstlen );
1921         break;
1922     }
1923
1924     if (ret < 0)
1925     {
1926         switch(ret)
1927         {
1928         case -1: SetLastError( ERROR_INSUFFICIENT_BUFFER ); break;
1929         case -2: SetLastError( ERROR_NO_UNICODE_TRANSLATION ); break;
1930         }
1931         ret = 0;
1932     }
1933     TRACE("cp %d %s -> %s, ret = %d\n",
1934           page, debugstr_an(src, srclen), debugstr_wn(dst, ret), ret);
1935     return ret;
1936 }
1937
1938
1939 /***********************************************************************
1940  *              WideCharToMultiByte   (KERNEL32.@)
1941  *
1942  * Convert a Unicode character string into a multibyte string.
1943  *
1944  * PARAMS
1945  *   page    [I] Code page character set to convert to
1946  *   flags   [I] Mapping Flags (MB_ constants from "winnls.h").
1947  *   src     [I] Source string buffer
1948  *   srclen  [I] Length of src (in WCHARs), or -1 if src is NUL terminated
1949  *   dst     [O] Destination buffer
1950  *   dstlen  [I] Length of dst (in bytes), or 0 to compute the required length
1951  *   defchar [I] Default character to use for conversion if no exact
1952  *                  conversion can be made
1953  *   used    [O] Set if default character was used in the conversion
1954  *
1955  * RETURNS
1956  *   Success: If dstlen > 0, the number of characters written to dst.
1957  *            If dstlen == 0, number of characters needed to perform the
1958  *            conversion. In both cases the count includes the terminating NUL.
1959  *   Failure: 0. Use GetLastError() to determine the cause. Possible errors are
1960  *            ERROR_INSUFFICIENT_BUFFER, if not enough space is available in dst
1961  *            and dstlen != 0, and ERROR_INVALID_PARAMETER, if an invalid
1962  *            parameter was given.
1963  */
1964 INT WINAPI WideCharToMultiByte( UINT page, DWORD flags, LPCWSTR src, INT srclen,
1965                                 LPSTR dst, INT dstlen, LPCSTR defchar, BOOL *used )
1966 {
1967     const union cptable *table;
1968     int ret, used_tmp;
1969
1970     if (!src || (!dst && dstlen))
1971     {
1972         SetLastError( ERROR_INVALID_PARAMETER );
1973         return 0;
1974     }
1975
1976     if (srclen < 0) srclen = strlenW(src) + 1;
1977
1978     switch(page)
1979     {
1980     case CP_SYMBOL:
1981         if( flags || defchar || used)
1982         {
1983             SetLastError( ERROR_INVALID_PARAMETER );
1984             return 0;
1985         }
1986         ret = wine_cpsymbol_wcstombs( src, srclen, dst, dstlen );
1987         break;
1988     case CP_UTF7:
1989         FIXME("UTF-7 not supported\n");
1990         SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
1991         return 0;
1992     case CP_UNIXCP:
1993         if (unix_cptable)
1994         {
1995             ret = wine_cp_wcstombs( unix_cptable, flags, src, srclen, dst, dstlen,
1996                                     defchar, used ? &used_tmp : NULL );
1997             break;
1998         }
1999         /* fall through */
2000     case CP_UTF8:
2001         if (used) *used = FALSE;  /* all chars are valid for UTF-8 */
2002         ret = wine_utf8_wcstombs( flags, src, srclen, dst, dstlen );
2003         break;
2004     default:
2005         if (!(table = get_codepage_table( page )))
2006         {
2007             SetLastError( ERROR_INVALID_PARAMETER );
2008             return 0;
2009         }
2010         ret = wine_cp_wcstombs( table, flags, src, srclen, dst, dstlen,
2011                                 defchar, used ? &used_tmp : NULL );
2012         if (used) *used = used_tmp;
2013         break;
2014     }
2015
2016     if (ret < 0)
2017     {
2018         switch(ret)
2019         {
2020         case -1: SetLastError( ERROR_INSUFFICIENT_BUFFER ); break;
2021         case -2: SetLastError( ERROR_NO_UNICODE_TRANSLATION ); break;
2022         }
2023         ret = 0;
2024     }
2025     TRACE("cp %d %s -> %s, ret = %d\n",
2026           page, debugstr_wn(src, srclen), debugstr_an(dst, ret), ret);
2027     return ret;
2028 }
2029
2030
2031 /***********************************************************************
2032  *           GetThreadLocale    (KERNEL32.@)
2033  *
2034  * Get the current threads locale.
2035  *
2036  * PARAMS
2037  *  None.
2038  *
2039  * RETURNS
2040  *  The LCID currently associated with the calling thread.
2041  */
2042 LCID WINAPI GetThreadLocale(void)
2043 {
2044     LCID ret = NtCurrentTeb()->CurrentLocale;
2045     if (!ret) NtCurrentTeb()->CurrentLocale = ret = GetUserDefaultLCID();
2046     return ret;
2047 }
2048
2049 /**********************************************************************
2050  *           SetThreadLocale    (KERNEL32.@)
2051  *
2052  * Set the current threads locale.
2053  *
2054  * PARAMS
2055  *  lcid [I] LCID of the locale to set
2056  *
2057  * RETURNS
2058  *  Success: TRUE. The threads locale is set to lcid.
2059  *  Failure: FALSE. Use GetLastError() to determine the cause.
2060  */
2061 BOOL WINAPI SetThreadLocale( LCID lcid )
2062 {
2063     TRACE("(0x%04X)\n", lcid);
2064
2065     lcid = ConvertDefaultLocale(lcid);
2066
2067     if (lcid != GetThreadLocale())
2068     {
2069         if (!IsValidLocale(lcid, LCID_SUPPORTED))
2070         {
2071             SetLastError(ERROR_INVALID_PARAMETER);
2072             return FALSE;
2073         }
2074
2075         NtCurrentTeb()->CurrentLocale = lcid;
2076     }
2077     return TRUE;
2078 }
2079
2080 /**********************************************************************
2081  *           SetThreadUILanguage    (KERNEL32.@)
2082  *
2083  * Set the current threads UI language.
2084  *
2085  * PARAMS
2086  *  langid [I] LANGID of the language to set, or 0 to use
2087  *             the available language which is best supported
2088  *             for console applications
2089  *
2090  * RETURNS
2091  *  Success: The return value is the same as the input value.
2092  *  Failure: The return value differs from the input value.
2093  *           Use GetLastError() to determine the cause.
2094  */
2095 LANGID WINAPI SetThreadUILanguage( LANGID langid )
2096 {
2097     TRACE("(0x%04x) stub - returning success\n", langid);
2098     return langid;
2099 }
2100
2101 /******************************************************************************
2102  *              ConvertDefaultLocale (KERNEL32.@)
2103  *
2104  * Convert a default locale identifier into a real identifier.
2105  *
2106  * PARAMS
2107  *  lcid [I] LCID identifier of the locale to convert
2108  *
2109  * RETURNS
2110  *  lcid unchanged, if not a default locale or its sublanguage is
2111  *   not SUBLANG_NEUTRAL.
2112  *  GetSystemDefaultLCID(), if lcid == LOCALE_SYSTEM_DEFAULT.
2113  *  GetUserDefaultLCID(), if lcid == LOCALE_USER_DEFAULT or LOCALE_NEUTRAL.
2114  *  Otherwise, lcid with sublanguage changed to SUBLANG_DEFAULT.
2115  */
2116 LCID WINAPI ConvertDefaultLocale( LCID lcid )
2117 {
2118     LANGID langid;
2119
2120     switch (lcid)
2121     {
2122     case LOCALE_SYSTEM_DEFAULT:
2123         lcid = GetSystemDefaultLCID();
2124         break;
2125     case LOCALE_USER_DEFAULT:
2126     case LOCALE_NEUTRAL:
2127         lcid = GetUserDefaultLCID();
2128         break;
2129     default:
2130         /* Replace SUBLANG_NEUTRAL with SUBLANG_DEFAULT */
2131         langid = LANGIDFROMLCID(lcid);
2132         if (SUBLANGID(langid) == SUBLANG_NEUTRAL)
2133         {
2134           langid = MAKELANGID(PRIMARYLANGID(langid), SUBLANG_DEFAULT);
2135           lcid = MAKELCID(langid, SORTIDFROMLCID(lcid));
2136         }
2137     }
2138     return lcid;
2139 }
2140
2141
2142 /******************************************************************************
2143  *           IsValidLocale   (KERNEL32.@)
2144  *
2145  * Determine if a locale is valid.
2146  *
2147  * PARAMS
2148  *  lcid  [I] LCID of the locale to check
2149  *  flags [I] LCID_SUPPORTED = Valid, LCID_INSTALLED = Valid and installed on the system
2150  *
2151  * RETURNS
2152  *  TRUE,  if lcid is valid,
2153  *  FALSE, otherwise.
2154  *
2155  * NOTES
2156  *  Wine does not currently make the distinction between supported and installed. All
2157  *  languages supported are installed by default.
2158  */
2159 BOOL WINAPI IsValidLocale( LCID lcid, DWORD flags )
2160 {
2161     /* check if language is registered in the kernel32 resources */
2162     return FindResourceExW( kernel32_handle, (LPWSTR)RT_STRING,
2163                             (LPCWSTR)LOCALE_ILANGUAGE, LANGIDFROMLCID(lcid)) != 0;
2164 }
2165
2166
2167 static BOOL CALLBACK enum_lang_proc_a( HMODULE hModule, LPCSTR type,
2168                                        LPCSTR name, WORD LangID, LONG_PTR lParam )
2169 {
2170     LOCALE_ENUMPROCA lpfnLocaleEnum = (LOCALE_ENUMPROCA)lParam;
2171     char buf[20];
2172
2173     sprintf(buf, "%08x", (UINT)LangID);
2174     return lpfnLocaleEnum( buf );
2175 }
2176
2177 static BOOL CALLBACK enum_lang_proc_w( HMODULE hModule, LPCWSTR type,
2178                                        LPCWSTR name, WORD LangID, LONG_PTR lParam )
2179 {
2180     static const WCHAR formatW[] = {'%','0','8','x',0};
2181     LOCALE_ENUMPROCW lpfnLocaleEnum = (LOCALE_ENUMPROCW)lParam;
2182     WCHAR buf[20];
2183     sprintfW( buf, formatW, (UINT)LangID );
2184     return lpfnLocaleEnum( buf );
2185 }
2186
2187 /******************************************************************************
2188  *           EnumSystemLocalesA  (KERNEL32.@)
2189  *
2190  * Call a users function for each locale available on the system.
2191  *
2192  * PARAMS
2193  *  lpfnLocaleEnum [I] Callback function to call for each locale
2194  *  dwFlags        [I] LOCALE_SUPPORTED=All supported, LOCALE_INSTALLED=Installed only
2195  *
2196  * RETURNS
2197  *  Success: TRUE.
2198  *  Failure: FALSE. Use GetLastError() to determine the cause.
2199  */
2200 BOOL WINAPI EnumSystemLocalesA( LOCALE_ENUMPROCA lpfnLocaleEnum, DWORD dwFlags )
2201 {
2202     TRACE("(%p,%08x)\n", lpfnLocaleEnum, dwFlags);
2203     EnumResourceLanguagesA( kernel32_handle, (LPSTR)RT_STRING,
2204                             (LPCSTR)LOCALE_ILANGUAGE, enum_lang_proc_a,
2205                             (LONG_PTR)lpfnLocaleEnum);
2206     return TRUE;
2207 }
2208
2209
2210 /******************************************************************************
2211  *           EnumSystemLocalesW  (KERNEL32.@)
2212  *
2213  * See EnumSystemLocalesA.
2214  */
2215 BOOL WINAPI EnumSystemLocalesW( LOCALE_ENUMPROCW lpfnLocaleEnum, DWORD dwFlags )
2216 {
2217     TRACE("(%p,%08x)\n", lpfnLocaleEnum, dwFlags);
2218     EnumResourceLanguagesW( kernel32_handle, (LPWSTR)RT_STRING,
2219                             (LPCWSTR)LOCALE_ILANGUAGE, enum_lang_proc_w,
2220                             (LONG_PTR)lpfnLocaleEnum);
2221     return TRUE;
2222 }
2223
2224
2225 /***********************************************************************
2226  *           VerLanguageNameA  (KERNEL32.@)
2227  *
2228  * Get the name of a language.
2229  *
2230  * PARAMS
2231  *  wLang  [I] LANGID of the language
2232  *  szLang [O] Destination for the language name
2233  *
2234  * RETURNS
2235  *  Success: The size of the language name. If szLang is non-NULL, it is filled
2236  *           with the name.
2237  *  Failure: 0. Use GetLastError() to determine the cause.
2238  *
2239  */
2240 DWORD WINAPI VerLanguageNameA( DWORD wLang, LPSTR szLang, DWORD nSize )
2241 {
2242     return GetLocaleInfoA( MAKELCID(wLang, SORT_DEFAULT), LOCALE_SENGLANGUAGE, szLang, nSize );
2243 }
2244
2245
2246 /***********************************************************************
2247  *           VerLanguageNameW  (KERNEL32.@)
2248  *
2249  * See VerLanguageNameA.
2250  */
2251 DWORD WINAPI VerLanguageNameW( DWORD wLang, LPWSTR szLang, DWORD nSize )
2252 {
2253     return GetLocaleInfoW( MAKELCID(wLang, SORT_DEFAULT), LOCALE_SENGLANGUAGE, szLang, nSize );
2254 }
2255
2256
2257 /******************************************************************************
2258  *           GetStringTypeW    (KERNEL32.@)
2259  *
2260  * See GetStringTypeA.
2261  */
2262 BOOL WINAPI GetStringTypeW( DWORD type, LPCWSTR src, INT count, LPWORD chartype )
2263 {
2264     if (count == -1) count = strlenW(src) + 1;
2265     switch(type)
2266     {
2267     case CT_CTYPE1:
2268         while (count--) *chartype++ = get_char_typeW( *src++ ) & 0xfff;
2269         break;
2270     case CT_CTYPE2:
2271         while (count--) *chartype++ = get_char_typeW( *src++ ) >> 12;
2272         break;
2273     case CT_CTYPE3:
2274     {
2275         WARN("CT_CTYPE3: semi-stub.\n");
2276         while (count--)
2277         {
2278             int c = *src;
2279             WORD type1, type3 = 0; /* C3_NOTAPPLICABLE */
2280
2281             type1 = get_char_typeW( *src++ ) & 0xfff;
2282             /* try to construct type3 from type1 */
2283             if(type1 & C1_SPACE) type3 |= C3_SYMBOL;
2284             if(type1 & C1_ALPHA) type3 |= C3_ALPHA;
2285             if ((c>=0x30A0)&&(c<=0x30FF)) type3 |= C3_KATAKANA;
2286             if ((c>=0x3040)&&(c<=0x309F)) type3 |= C3_HIRAGANA;
2287             if ((c>=0x4E00)&&(c<=0x9FAF)) type3 |= C3_IDEOGRAPH;
2288             if ((c>=0x0600)&&(c<=0x06FF)) type3 |= C3_KASHIDA;
2289             if ((c>=0x3000)&&(c<=0x303F)) type3 |= C3_SYMBOL;
2290
2291             if ((c>=0xFF00)&&(c<=0xFF60)) type3 |= C3_FULLWIDTH;
2292             if ((c>=0xFF00)&&(c<=0xFF20)) type3 |= C3_SYMBOL;
2293             if ((c>=0xFF3B)&&(c<=0xFF40)) type3 |= C3_SYMBOL;
2294             if ((c>=0xFF5B)&&(c<=0xFF60)) type3 |= C3_SYMBOL;
2295             if ((c>=0xFF21)&&(c<=0xFF3A)) type3 |= C3_ALPHA;
2296             if ((c>=0xFF41)&&(c<=0xFF5A)) type3 |= C3_ALPHA;
2297             if ((c>=0xFFE0)&&(c<=0xFFE6)) type3 |= C3_FULLWIDTH;
2298             if ((c>=0xFFE0)&&(c<=0xFFE6)) type3 |= C3_SYMBOL;
2299
2300             if ((c>=0xFF61)&&(c<=0xFFDC)) type3 |= C3_HALFWIDTH;
2301             if ((c>=0xFF61)&&(c<=0xFF64)) type3 |= C3_SYMBOL;
2302             if ((c>=0xFF65)&&(c<=0xFF9F)) type3 |= C3_KATAKANA;
2303             if ((c>=0xFF65)&&(c<=0xFF9F)) type3 |= C3_ALPHA;
2304             if ((c>=0xFFE8)&&(c<=0xFFEE)) type3 |= C3_HALFWIDTH;
2305             if ((c>=0xFFE8)&&(c<=0xFFEE)) type3 |= C3_SYMBOL;
2306             *chartype++ = type3;
2307         }
2308         break;
2309     }
2310     default:
2311         SetLastError( ERROR_INVALID_PARAMETER );
2312         return FALSE;
2313     }
2314     return TRUE;
2315 }
2316
2317
2318 /******************************************************************************
2319  *           GetStringTypeExW    (KERNEL32.@)
2320  *
2321  * See GetStringTypeExA.
2322  */
2323 BOOL WINAPI GetStringTypeExW( LCID locale, DWORD type, LPCWSTR src, INT count, LPWORD chartype )
2324 {
2325     /* locale is ignored for Unicode */
2326     return GetStringTypeW( type, src, count, chartype );
2327 }
2328
2329
2330 /******************************************************************************
2331  *           GetStringTypeA    (KERNEL32.@)
2332  *
2333  * Get characteristics of the characters making up a string.
2334  *
2335  * PARAMS
2336  *  locale   [I] Locale Id for the string
2337  *  type     [I] CT_CTYPE1 = classification, CT_CTYPE2 = directionality, CT_CTYPE3 = typographic info
2338  *  src      [I] String to analyse
2339  *  count    [I] Length of src in chars, or -1 if src is NUL terminated
2340  *  chartype [O] Destination for the calculated characteristics
2341  *
2342  * RETURNS
2343  *  Success: TRUE. chartype is filled with the requested characteristics of each char
2344  *           in src.
2345  *  Failure: FALSE. Use GetLastError() to determine the cause.
2346  */
2347 BOOL WINAPI GetStringTypeA( LCID locale, DWORD type, LPCSTR src, INT count, LPWORD chartype )
2348 {
2349     UINT cp;
2350     INT countW;
2351     LPWSTR srcW;
2352     BOOL ret = FALSE;
2353
2354     if(count == -1) count = strlen(src) + 1;
2355
2356     if (!(cp = get_lcid_codepage( locale )))
2357     {
2358         FIXME("For locale %04x using current ANSI code page\n", locale);
2359         cp = GetACP();
2360     }
2361
2362     countW = MultiByteToWideChar(cp, 0, src, count, NULL, 0);
2363     if((srcW = HeapAlloc(GetProcessHeap(), 0, countW * sizeof(WCHAR))))
2364     {
2365         MultiByteToWideChar(cp, 0, src, count, srcW, countW);
2366     /*
2367      * NOTE: the target buffer has 1 word for each CHARACTER in the source
2368      * string, with multibyte characters there maybe be more bytes in count
2369      * than character space in the buffer!
2370      */
2371         ret = GetStringTypeW(type, srcW, countW, chartype);
2372         HeapFree(GetProcessHeap(), 0, srcW);
2373     }
2374     return ret;
2375 }
2376
2377 /******************************************************************************
2378  *           GetStringTypeExA    (KERNEL32.@)
2379  *
2380  * Get characteristics of the characters making up a string.
2381  *
2382  * PARAMS
2383  *  locale   [I] Locale Id for the string
2384  *  type     [I] CT_CTYPE1 = classification, CT_CTYPE2 = directionality, CT_CTYPE3 = typographic info
2385  *  src      [I] String to analyse
2386  *  count    [I] Length of src in chars, or -1 if src is NUL terminated
2387  *  chartype [O] Destination for the calculated characteristics
2388  *
2389  * RETURNS
2390  *  Success: TRUE. chartype is filled with the requested characteristics of each char
2391  *           in src.
2392  *  Failure: FALSE. Use GetLastError() to determine the cause.
2393  */
2394 BOOL WINAPI GetStringTypeExA( LCID locale, DWORD type, LPCSTR src, INT count, LPWORD chartype )
2395 {
2396     return GetStringTypeA(locale, type, src, count, chartype);
2397 }
2398
2399
2400 /*************************************************************************
2401  *           LCMapStringW    (KERNEL32.@)
2402  *
2403  * See LCMapStringA.
2404  */
2405 INT WINAPI LCMapStringW(LCID lcid, DWORD flags, LPCWSTR src, INT srclen,
2406                         LPWSTR dst, INT dstlen)
2407 {
2408     LPWSTR dst_ptr;
2409
2410     if (!src || !srclen || dstlen < 0)
2411     {
2412         SetLastError(ERROR_INVALID_PARAMETER);
2413         return 0;
2414     }
2415
2416     /* mutually exclusive flags */
2417     if ((flags & (LCMAP_LOWERCASE | LCMAP_UPPERCASE)) == (LCMAP_LOWERCASE | LCMAP_UPPERCASE) ||
2418         (flags & (LCMAP_HIRAGANA | LCMAP_KATAKANA)) == (LCMAP_HIRAGANA | LCMAP_KATAKANA) ||
2419         (flags & (LCMAP_HALFWIDTH | LCMAP_FULLWIDTH)) == (LCMAP_HALFWIDTH | LCMAP_FULLWIDTH) ||
2420         (flags & (LCMAP_TRADITIONAL_CHINESE | LCMAP_SIMPLIFIED_CHINESE)) == (LCMAP_TRADITIONAL_CHINESE | LCMAP_SIMPLIFIED_CHINESE))
2421     {
2422         SetLastError(ERROR_INVALID_FLAGS);
2423         return 0;
2424     }
2425
2426     if (!dstlen) dst = NULL;
2427
2428     lcid = ConvertDefaultLocale(lcid);
2429
2430     if (flags & LCMAP_SORTKEY)
2431     {
2432         INT ret;
2433         if (src == dst)
2434         {
2435             SetLastError(ERROR_INVALID_FLAGS);
2436             return 0;
2437         }
2438
2439         if (srclen < 0) srclen = strlenW(src);
2440
2441         TRACE("(0x%04x,0x%08x,%s,%d,%p,%d)\n",
2442               lcid, flags, debugstr_wn(src, srclen), srclen, dst, dstlen);
2443
2444         ret = wine_get_sortkey(flags, src, srclen, (char *)dst, dstlen);
2445         if (ret == 0)
2446             SetLastError(ERROR_INSUFFICIENT_BUFFER);
2447         else
2448             ret++;
2449         return ret;
2450     }
2451
2452     /* SORT_STRINGSORT must be used exclusively with LCMAP_SORTKEY */
2453     if (flags & SORT_STRINGSORT)
2454     {
2455         SetLastError(ERROR_INVALID_FLAGS);
2456         return 0;
2457     }
2458
2459     if (srclen < 0) srclen = strlenW(src) + 1;
2460
2461     TRACE("(0x%04x,0x%08x,%s,%d,%p,%d)\n",
2462           lcid, flags, debugstr_wn(src, srclen), srclen, dst, dstlen);
2463
2464     if (!dst) /* return required string length */
2465     {
2466         INT len;
2467
2468         for (len = 0; srclen; src++, srclen--)
2469         {
2470             WCHAR wch = *src;
2471             /* tests show that win2k just ignores NORM_IGNORENONSPACE,
2472              * and skips white space and punctuation characters for
2473              * NORM_IGNORESYMBOLS.
2474              */
2475             if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
2476                 continue;
2477             len++;
2478         }
2479         return len;
2480     }
2481
2482     if (flags & LCMAP_UPPERCASE)
2483     {
2484         for (dst_ptr = dst; srclen && dstlen; src++, srclen--)
2485         {
2486             WCHAR wch = *src;
2487             if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
2488                 continue;
2489             *dst_ptr++ = toupperW(wch);
2490             dstlen--;
2491         }
2492     }
2493     else if (flags & LCMAP_LOWERCASE)
2494     {
2495         for (dst_ptr = dst; srclen && dstlen; src++, srclen--)
2496         {
2497             WCHAR wch = *src;
2498             if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
2499                 continue;
2500             *dst_ptr++ = tolowerW(wch);
2501             dstlen--;
2502         }
2503     }
2504     else
2505     {
2506         if (src == dst)
2507         {
2508             SetLastError(ERROR_INVALID_FLAGS);
2509             return 0;
2510         }
2511         for (dst_ptr = dst; srclen && dstlen; src++, srclen--)
2512         {
2513             WCHAR wch = *src;
2514             if ((flags & NORM_IGNORESYMBOLS) && (get_char_typeW(wch) & (C1_PUNCT | C1_SPACE)))
2515                 continue;
2516             *dst_ptr++ = wch;
2517             dstlen--;
2518         }
2519     }
2520
2521     if (srclen)
2522     {
2523         SetLastError(ERROR_INSUFFICIENT_BUFFER);
2524         return 0;
2525     }
2526
2527     return dst_ptr - dst;
2528 }
2529
2530 /*************************************************************************
2531  *           LCMapStringA    (KERNEL32.@)
2532  *
2533  * Map characters in a locale sensitive string.
2534  *
2535  * PARAMS
2536  *  lcid   [I] LCID for the conversion.
2537  *  flags  [I] Flags controlling the mapping (LCMAP_ constants from "winnls.h").
2538  *  src    [I] String to map
2539  *  srclen [I] Length of src in chars, or -1 if src is NUL terminated
2540  *  dst    [O] Destination for mapped string
2541  *  dstlen [I] Length of dst in characters
2542  *
2543  * RETURNS
2544  *  Success: The length of the mapped string in dst, including the NUL terminator.
2545  *  Failure: 0. Use GetLastError() to determine the cause.
2546  */
2547 INT WINAPI LCMapStringA(LCID lcid, DWORD flags, LPCSTR src, INT srclen,
2548                         LPSTR dst, INT dstlen)
2549 {
2550     WCHAR *bufW = NtCurrentTeb()->StaticUnicodeBuffer;
2551     LPWSTR srcW, dstW;
2552     INT ret = 0, srclenW, dstlenW;
2553     UINT locale_cp = CP_ACP;
2554
2555     if (!src || !srclen || dstlen < 0)
2556     {
2557         SetLastError(ERROR_INVALID_PARAMETER);
2558         return 0;
2559     }
2560
2561     if (!(flags & LOCALE_USE_CP_ACP)) locale_cp = get_lcid_codepage( lcid );
2562
2563     srclenW = MultiByteToWideChar(locale_cp, 0, src, srclen, bufW, 260);
2564     if (srclenW)
2565         srcW = bufW;
2566     else
2567     {
2568         srclenW = MultiByteToWideChar(locale_cp, 0, src, srclen, NULL, 0);
2569         srcW = HeapAlloc(GetProcessHeap(), 0, srclenW * sizeof(WCHAR));
2570         if (!srcW)
2571         {
2572             SetLastError(ERROR_NOT_ENOUGH_MEMORY);
2573             return 0;
2574         }
2575         MultiByteToWideChar(locale_cp, 0, src, srclen, srcW, srclenW);
2576     }
2577
2578     if (flags & LCMAP_SORTKEY)
2579     {
2580         if (src == dst)
2581         {
2582             SetLastError(ERROR_INVALID_FLAGS);
2583             goto map_string_exit;
2584         }
2585         ret = wine_get_sortkey(flags, srcW, srclenW, dst, dstlen);
2586         if (ret == 0)
2587             SetLastError(ERROR_INSUFFICIENT_BUFFER);
2588         else
2589             ret++;
2590         goto map_string_exit;
2591     }
2592
2593     if (flags & SORT_STRINGSORT)
2594     {
2595         SetLastError(ERROR_INVALID_FLAGS);
2596         goto map_string_exit;
2597     }
2598
2599     dstlenW = LCMapStringW(lcid, flags, srcW, srclenW, NULL, 0);
2600     if (!dstlenW)
2601         goto map_string_exit;
2602
2603     dstW = HeapAlloc(GetProcessHeap(), 0, dstlenW * sizeof(WCHAR));
2604     if (!dstW)
2605     {
2606         SetLastError(ERROR_NOT_ENOUGH_MEMORY);
2607         goto map_string_exit;
2608     }
2609
2610     LCMapStringW(lcid, flags, srcW, srclenW, dstW, dstlenW);
2611     ret = WideCharToMultiByte(locale_cp, 0, dstW, dstlenW, dst, dstlen, NULL, NULL);
2612     HeapFree(GetProcessHeap(), 0, dstW);
2613
2614 map_string_exit:
2615     if (srcW != bufW) HeapFree(GetProcessHeap(), 0, srcW);
2616     return ret;
2617 }
2618
2619 /*************************************************************************
2620  *           FoldStringA    (KERNEL32.@)
2621  *
2622  * Map characters in a string.
2623  *
2624  * PARAMS
2625  *  dwFlags [I] Flags controlling chars to map (MAP_ constants from "winnls.h")
2626  *  src     [I] String to map
2627  *  srclen  [I] Length of src, or -1 if src is NUL terminated
2628  *  dst     [O] Destination for mapped string
2629  *  dstlen  [I] Length of dst, or 0 to find the required length for the mapped string
2630  *
2631  * RETURNS
2632  *  Success: The length of the string written to dst, including the terminating NUL. If
2633  *           dstlen is 0, the value returned is the same, but nothing is written to dst,
2634  *           and dst may be NULL.
2635  *  Failure: 0. Use GetLastError() to determine the cause.
2636  */
2637 INT WINAPI FoldStringA(DWORD dwFlags, LPCSTR src, INT srclen,
2638                        LPSTR dst, INT dstlen)
2639 {
2640     INT ret = 0, srclenW = 0;
2641     WCHAR *srcW = NULL, *dstW = NULL;
2642
2643     if (!src || !srclen || dstlen < 0 || (dstlen && !dst) || src == dst)
2644     {
2645         SetLastError(ERROR_INVALID_PARAMETER);
2646         return 0;
2647     }
2648
2649     srclenW = MultiByteToWideChar(CP_ACP, dwFlags & MAP_COMPOSITE ? MB_COMPOSITE : 0,
2650                                   src, srclen, NULL, 0);
2651     srcW = HeapAlloc(GetProcessHeap(), 0, srclenW * sizeof(WCHAR));
2652
2653     if (!srcW)
2654     {
2655         SetLastError(ERROR_NOT_ENOUGH_MEMORY);
2656         goto FoldStringA_exit;
2657     }
2658
2659     MultiByteToWideChar(CP_ACP, dwFlags & MAP_COMPOSITE ? MB_COMPOSITE : 0,
2660                         src, srclen, srcW, srclenW);
2661
2662     dwFlags = (dwFlags & ~MAP_PRECOMPOSED) | MAP_FOLDCZONE;
2663
2664     ret = FoldStringW(dwFlags, srcW, srclenW, NULL, 0);
2665     if (ret && dstlen)
2666     {
2667         dstW = HeapAlloc(GetProcessHeap(), 0, ret * sizeof(WCHAR));
2668
2669         if (!dstW)
2670         {
2671             SetLastError(ERROR_NOT_ENOUGH_MEMORY);
2672             goto FoldStringA_exit;
2673         }
2674
2675         ret = FoldStringW(dwFlags, srcW, srclenW, dstW, ret);
2676         if (!WideCharToMultiByte(CP_ACP, 0, dstW, ret, dst, dstlen, NULL, NULL))
2677         {
2678             ret = 0;
2679             SetLastError(ERROR_INSUFFICIENT_BUFFER);
2680         }
2681     }
2682
2683     HeapFree(GetProcessHeap(), 0, dstW);
2684
2685 FoldStringA_exit:
2686     HeapFree(GetProcessHeap(), 0, srcW);
2687     return ret;
2688 }
2689
2690 /*************************************************************************
2691  *           FoldStringW    (KERNEL32.@)
2692  *
2693  * See FoldStringA.
2694  */
2695 INT WINAPI FoldStringW(DWORD dwFlags, LPCWSTR src, INT srclen,
2696                        LPWSTR dst, INT dstlen)
2697 {
2698     int ret;
2699
2700     switch (dwFlags & (MAP_COMPOSITE|MAP_PRECOMPOSED|MAP_EXPAND_LIGATURES))
2701     {
2702     case 0:
2703         if (dwFlags)
2704           break;
2705         /* Fall through for dwFlags == 0 */
2706     case MAP_PRECOMPOSED|MAP_COMPOSITE:
2707     case MAP_PRECOMPOSED|MAP_EXPAND_LIGATURES:
2708     case MAP_COMPOSITE|MAP_EXPAND_LIGATURES:
2709         SetLastError(ERROR_INVALID_FLAGS);
2710         return 0;
2711     }
2712
2713     if (!src || !srclen || dstlen < 0 || (dstlen && !dst) || src == dst)
2714     {
2715         SetLastError(ERROR_INVALID_PARAMETER);
2716         return 0;
2717     }
2718
2719     ret = wine_fold_string(dwFlags, src, srclen, dst, dstlen);
2720     if (!ret)
2721         SetLastError(ERROR_INSUFFICIENT_BUFFER);
2722     return ret;
2723 }
2724
2725 /******************************************************************************
2726  *           CompareStringW    (KERNEL32.@)
2727  *
2728  * See CompareStringA.
2729  */
2730 INT WINAPI CompareStringW(LCID lcid, DWORD style,
2731                           LPCWSTR str1, INT len1, LPCWSTR str2, INT len2)
2732 {
2733     INT ret;
2734
2735     if (!str1 || !str2)
2736     {
2737         SetLastError(ERROR_INVALID_PARAMETER);
2738         return 0;
2739     }
2740
2741     if( style & ~(NORM_IGNORECASE|NORM_IGNORENONSPACE|NORM_IGNORESYMBOLS|
2742         SORT_STRINGSORT|NORM_IGNOREKANATYPE|NORM_IGNOREWIDTH|LOCALE_USE_CP_ACP|0x10000000) )
2743     {
2744         SetLastError(ERROR_INVALID_FLAGS);
2745         return 0;
2746     }
2747
2748     /* this style is related to diacritics in Arabic, Japanese, and Hebrew */
2749     if (style & 0x10000000)
2750         WARN("Ignoring unknown style 0x10000000\n");
2751
2752     if (len1 < 0) len1 = strlenW(str1);
2753     if (len2 < 0) len2 = strlenW(str2);
2754
2755     ret = wine_compare_string(style, str1, len1, str2, len2);
2756
2757     if (ret) /* need to translate result */
2758         return (ret < 0) ? CSTR_LESS_THAN : CSTR_GREATER_THAN;
2759     return CSTR_EQUAL;
2760 }
2761
2762 /******************************************************************************
2763  *           CompareStringA    (KERNEL32.@)
2764  *
2765  * Compare two locale sensitive strings.
2766  *
2767  * PARAMS
2768  *  lcid  [I] LCID for the comparison
2769  *  style [I] Flags for the comparison (NORM_ constants from "winnls.h").
2770  *  str1  [I] First string to compare
2771  *  len1  [I] Length of str1, or -1 if str1 is NUL terminated
2772  *  str2  [I] Second string to compare
2773  *  len2  [I] Length of str2, or -1 if str2 is NUL terminated
2774  *
2775  * RETURNS
2776  *  Success: CSTR_LESS_THAN, CSTR_EQUAL or CSTR_GREATER_THAN depending on whether
2777  *           str2 is less than, equal to or greater than str1 respectively.
2778  *  Failure: FALSE. Use GetLastError() to determine the cause.
2779  */
2780 INT WINAPI CompareStringA(LCID lcid, DWORD style,
2781                           LPCSTR str1, INT len1, LPCSTR str2, INT len2)
2782 {
2783     WCHAR *buf1W = NtCurrentTeb()->StaticUnicodeBuffer;
2784     WCHAR *buf2W = buf1W + 130;
2785     LPWSTR str1W, str2W;
2786     INT len1W, len2W, ret;
2787     UINT locale_cp = CP_ACP;
2788
2789     if (!str1 || !str2)
2790     {
2791         SetLastError(ERROR_INVALID_PARAMETER);
2792         return 0;
2793     }
2794     if (len1 < 0) len1 = strlen(str1);
2795     if (len2 < 0) len2 = strlen(str2);
2796
2797     if (!(style & LOCALE_USE_CP_ACP)) locale_cp = get_lcid_codepage( lcid );
2798
2799     len1W = MultiByteToWideChar(locale_cp, 0, str1, len1, buf1W, 130);
2800     if (len1W)
2801         str1W = buf1W;
2802     else
2803     {
2804         len1W = MultiByteToWideChar(locale_cp, 0, str1, len1, NULL, 0);
2805         str1W = HeapAlloc(GetProcessHeap(), 0, len1W * sizeof(WCHAR));
2806         if (!str1W)
2807         {
2808             SetLastError(ERROR_NOT_ENOUGH_MEMORY);
2809             return 0;
2810         }
2811         MultiByteToWideChar(locale_cp, 0, str1, len1, str1W, len1W);
2812     }
2813     len2W = MultiByteToWideChar(locale_cp, 0, str2, len2, buf2W, 130);
2814     if (len2W)
2815         str2W = buf2W;
2816     else
2817     {
2818         len2W = MultiByteToWideChar(locale_cp, 0, str2, len2, NULL, 0);
2819         str2W = HeapAlloc(GetProcessHeap(), 0, len2W * sizeof(WCHAR));
2820         if (!str2W)
2821         {
2822             if (str1W != buf1W) HeapFree(GetProcessHeap(), 0, str1W);
2823             SetLastError(ERROR_NOT_ENOUGH_MEMORY);
2824             return 0;
2825         }
2826         MultiByteToWideChar(locale_cp, 0, str2, len2, str2W, len2W);
2827     }
2828
2829     ret = CompareStringW(lcid, style, str1W, len1W, str2W, len2W);
2830
2831     if (str1W != buf1W) HeapFree(GetProcessHeap(), 0, str1W);
2832     if (str2W != buf2W) HeapFree(GetProcessHeap(), 0, str2W);
2833     return ret;
2834 }
2835
2836 /*************************************************************************
2837  *           lstrcmp     (KERNEL32.@)
2838  *           lstrcmpA    (KERNEL32.@)
2839  *
2840  * Compare two strings using the current thread locale.
2841  *
2842  * PARAMS
2843  *  str1  [I] First string to compare
2844  *  str2  [I] Second string to compare
2845  *
2846  * RETURNS
2847  *  Success: A number less than, equal to or greater than 0 depending on whether
2848  *           str2 is less than, equal to or greater than str1 respectively.
2849  *  Failure: FALSE. Use GetLastError() to determine the cause.
2850  */
2851 int WINAPI lstrcmpA(LPCSTR str1, LPCSTR str2)
2852 {
2853     int ret;
2854     
2855     if ((str1 == NULL) && (str2 == NULL)) return 0;
2856     if (str1 == NULL) return -1;
2857     if (str2 == NULL) return 1;
2858
2859     ret = CompareStringA(GetThreadLocale(), LOCALE_USE_CP_ACP, str1, -1, str2, -1);
2860     if (ret) ret -= 2;
2861     
2862     return ret;
2863 }
2864
2865 /*************************************************************************
2866  *           lstrcmpi     (KERNEL32.@)
2867  *           lstrcmpiA    (KERNEL32.@)
2868  *
2869  * Compare two strings using the current thread locale, ignoring case.
2870  *
2871  * PARAMS
2872  *  str1  [I] First string to compare
2873  *  str2  [I] Second string to compare
2874  *
2875  * RETURNS
2876  *  Success: A number less than, equal to or greater than 0 depending on whether
2877  *           str2 is less than, equal to or greater than str1 respectively.
2878  *  Failure: FALSE. Use GetLastError() to determine the cause.
2879  */
2880 int WINAPI lstrcmpiA(LPCSTR str1, LPCSTR str2)
2881 {
2882     int ret;
2883     
2884     if ((str1 == NULL) && (str2 == NULL)) return 0;
2885     if (str1 == NULL) return -1;
2886     if (str2 == NULL) return 1;
2887
2888     ret = CompareStringA(GetThreadLocale(), NORM_IGNORECASE|LOCALE_USE_CP_ACP, str1, -1, str2, -1);
2889     if (ret) ret -= 2;
2890     
2891     return ret;
2892 }
2893
2894 /*************************************************************************
2895  *           lstrcmpW    (KERNEL32.@)
2896  *
2897  * See lstrcmpA.
2898  */
2899 int WINAPI lstrcmpW(LPCWSTR str1, LPCWSTR str2)
2900 {
2901     int ret;
2902
2903     if ((str1 == NULL) && (str2 == NULL)) return 0;
2904     if (str1 == NULL) return -1;
2905     if (str2 == NULL) return 1;
2906
2907     ret = CompareStringW(GetThreadLocale(), 0, str1, -1, str2, -1);
2908     if (ret) ret -= 2;
2909     
2910     return ret;
2911 }
2912
2913 /*************************************************************************
2914  *           lstrcmpiW    (KERNEL32.@)
2915  *
2916  * See lstrcmpiA.
2917  */
2918 int WINAPI lstrcmpiW(LPCWSTR str1, LPCWSTR str2)
2919 {
2920     int ret;
2921     
2922     if ((str1 == NULL) && (str2 == NULL)) return 0;
2923     if (str1 == NULL) return -1;
2924     if (str2 == NULL) return 1;
2925
2926     ret = CompareStringW(GetThreadLocale(), NORM_IGNORECASE, str1, -1, str2, -1);
2927     if (ret) ret -= 2;
2928     
2929     return ret;
2930 }
2931
2932 /******************************************************************************
2933  *              LOCALE_Init
2934  */
2935 void LOCALE_Init(void)
2936 {
2937     extern void CDECL __wine_init_codepages( const union cptable *ansi_cp, const union cptable *oem_cp,
2938                                              const union cptable *unix_cp );
2939
2940     UINT ansi_cp = 1252, oem_cp = 437, mac_cp = 10000, unix_cp;
2941
2942 #ifdef __APPLE__
2943     /* MacOS doesn't set the locale environment variables so we have to do it ourselves */
2944     char user_locale[50];
2945
2946     CFLocaleRef user_locale_ref = CFLocaleCopyCurrent();
2947     CFStringRef user_locale_lang_ref = CFLocaleGetValue( user_locale_ref, kCFLocaleLanguageCode );
2948     CFStringRef user_locale_country_ref = CFLocaleGetValue( user_locale_ref, kCFLocaleCountryCode );
2949     CFStringRef user_locale_string_ref;
2950
2951     if (user_locale_country_ref)
2952     {
2953         user_locale_string_ref = CFStringCreateWithFormat(NULL, NULL, CFSTR("%@_%@.UTF-8"),
2954             user_locale_lang_ref, user_locale_country_ref);
2955     }
2956     else
2957     {
2958         user_locale_string_ref = CFStringCreateWithFormat(NULL, NULL, CFSTR("%@.UTF-8"),
2959             user_locale_lang_ref);
2960     }
2961
2962     CFStringGetCString( user_locale_string_ref, user_locale, sizeof(user_locale), kCFStringEncodingUTF8 );
2963
2964     unix_cp = CP_UTF8;  /* default to utf-8 even if we don't get a valid locale */
2965     setenv( "LANG", user_locale, 0 );
2966     TRACE( "setting locale to '%s'\n", user_locale );
2967 #endif /* __APPLE__ */
2968
2969     setlocale( LC_ALL, "" );
2970
2971     unix_cp = setup_unix_locales();
2972     if (!lcid_LC_MESSAGES) lcid_LC_MESSAGES = lcid_LC_CTYPE;
2973
2974 #ifdef __APPLE__
2975     /* Override lcid_LC_MESSAGES with user's preferred language if LC_MESSAGES is set to default */
2976     if (!getenv("LC_ALL") && !getenv("LC_MESSAGES"))
2977     {
2978         /* Retrieve the preferred language as chosen in System Preferences. */
2979         /* If language is a less specific variant of locale (e.g. 'en' vs. 'en_US'),
2980            leave things be. */
2981         CFArrayRef all_locales = CFLocaleCopyAvailableLocaleIdentifiers();
2982         CFArrayRef preferred_locales = CFBundleCopyLocalizationsForPreferences( all_locales, NULL );
2983         CFStringRef user_language_string_ref;
2984         if (preferred_locales && CFArrayGetCount( preferred_locales ) &&
2985             (user_language_string_ref = CFArrayGetValueAtIndex( preferred_locales, 0 )) &&
2986             !CFEqual(user_language_string_ref, user_locale_lang_ref))
2987         {
2988             struct locale_name locale_name;
2989             WCHAR buffer[128];
2990             CFStringGetCString( user_language_string_ref, user_locale, sizeof(user_locale), kCFStringEncodingUTF8 );
2991             strcpynAtoW( buffer, user_locale, sizeof(buffer)/sizeof(WCHAR) );
2992             parse_locale_name( buffer, &locale_name );
2993             lcid_LC_MESSAGES = locale_name.lcid;
2994             TRACE( "setting lcid_LC_MESSAGES to '%s'\n", user_locale );
2995         }
2996         CFRelease( all_locales );
2997         if (preferred_locales)
2998             CFRelease( preferred_locales );
2999     }
3000
3001     CFRelease( user_locale_ref );
3002     CFRelease( user_locale_string_ref );
3003 #endif
3004
3005     NtSetDefaultUILanguage( LANGIDFROMLCID(lcid_LC_MESSAGES) );
3006     NtSetDefaultLocale( TRUE, lcid_LC_MESSAGES );
3007     NtSetDefaultLocale( FALSE, lcid_LC_CTYPE );
3008
3009     ansi_cp = get_lcid_codepage( LOCALE_USER_DEFAULT );
3010     GetLocaleInfoW( LOCALE_USER_DEFAULT, LOCALE_IDEFAULTMACCODEPAGE | LOCALE_RETURN_NUMBER,
3011                     (LPWSTR)&mac_cp, sizeof(mac_cp)/sizeof(WCHAR) );
3012     GetLocaleInfoW( LOCALE_USER_DEFAULT, LOCALE_IDEFAULTCODEPAGE | LOCALE_RETURN_NUMBER,
3013                     (LPWSTR)&oem_cp, sizeof(oem_cp)/sizeof(WCHAR) );
3014     if (!unix_cp)
3015         GetLocaleInfoW( LOCALE_USER_DEFAULT, LOCALE_IDEFAULTUNIXCODEPAGE | LOCALE_RETURN_NUMBER,
3016                         (LPWSTR)&unix_cp, sizeof(unix_cp)/sizeof(WCHAR) );
3017
3018     if (!(ansi_cptable = wine_cp_get_table( ansi_cp )))
3019         ansi_cptable = wine_cp_get_table( 1252 );
3020     if (!(oem_cptable = wine_cp_get_table( oem_cp )))
3021         oem_cptable  = wine_cp_get_table( 437 );
3022     if (!(mac_cptable = wine_cp_get_table( mac_cp )))
3023         mac_cptable  = wine_cp_get_table( 10000 );
3024     if (unix_cp != CP_UTF8)
3025     {
3026         if (!(unix_cptable = wine_cp_get_table( unix_cp )))
3027             unix_cptable  = wine_cp_get_table( 28591 );
3028     }
3029
3030     __wine_init_codepages( ansi_cptable, oem_cptable, unix_cptable );
3031
3032     TRACE( "ansi=%03d oem=%03d mac=%03d unix=%03d\n",
3033            ansi_cptable->info.codepage, oem_cptable->info.codepage,
3034            mac_cptable->info.codepage, unix_cp );
3035
3036     setlocale(LC_NUMERIC, "C");  /* FIXME: oleaut32 depends on this */
3037 }
3038
3039 static HANDLE NLS_RegOpenKey(HANDLE hRootKey, LPCWSTR szKeyName)
3040 {
3041     UNICODE_STRING keyName;
3042     OBJECT_ATTRIBUTES attr;
3043     HANDLE hkey;
3044
3045     RtlInitUnicodeString( &keyName, szKeyName );
3046     InitializeObjectAttributes(&attr, &keyName, 0, hRootKey, NULL);
3047
3048     if (NtOpenKey( &hkey, KEY_READ, &attr ) != STATUS_SUCCESS)
3049         hkey = 0;
3050
3051     return hkey;
3052 }
3053
3054 static BOOL NLS_RegEnumSubKey(HANDLE hKey, UINT ulIndex, LPWSTR szKeyName,
3055                               ULONG keyNameSize)
3056 {
3057     BYTE buffer[80];
3058     KEY_BASIC_INFORMATION *info = (KEY_BASIC_INFORMATION *)buffer;
3059     DWORD dwLen;
3060
3061     if (NtEnumerateKey( hKey, ulIndex, KeyBasicInformation, buffer,
3062                         sizeof(buffer), &dwLen) != STATUS_SUCCESS ||
3063         info->NameLength > keyNameSize)
3064     {
3065         return FALSE;
3066     }
3067
3068     TRACE("info->Name %s info->NameLength %d\n", debugstr_w(info->Name), info->NameLength);
3069
3070     memcpy( szKeyName, info->Name, info->NameLength);
3071     szKeyName[info->NameLength / sizeof(WCHAR)] = '\0';
3072
3073     TRACE("returning %s\n", debugstr_w(szKeyName));
3074     return TRUE;
3075 }
3076
3077 static BOOL NLS_RegEnumValue(HANDLE hKey, UINT ulIndex,
3078                              LPWSTR szValueName, ULONG valueNameSize,
3079                              LPWSTR szValueData, ULONG valueDataSize)
3080 {
3081     BYTE buffer[80];
3082     KEY_VALUE_FULL_INFORMATION *info = (KEY_VALUE_FULL_INFORMATION *)buffer;
3083     DWORD dwLen;
3084
3085     if (NtEnumerateValueKey( hKey, ulIndex, KeyValueFullInformation,
3086         buffer, sizeof(buffer), &dwLen ) != STATUS_SUCCESS ||
3087         info->NameLength > valueNameSize ||
3088         info->DataLength > valueDataSize)
3089     {
3090         return FALSE;
3091     }
3092
3093     TRACE("info->Name %s info->DataLength %d\n", debugstr_w(info->Name), info->DataLength);
3094
3095     memcpy( szValueName, info->Name, info->NameLength);
3096     szValueName[info->NameLength / sizeof(WCHAR)] = '\0';
3097     memcpy( szValueData, buffer + info->DataOffset, info->DataLength );
3098     szValueData[info->DataLength / sizeof(WCHAR)] = '\0';
3099
3100     TRACE("returning %s %s\n", debugstr_w(szValueName), debugstr_w(szValueData));
3101     return TRUE;
3102 }
3103
3104 static BOOL NLS_RegGetDword(HANDLE hKey, LPCWSTR szValueName, DWORD *lpVal)
3105 {
3106     BYTE buffer[128];
3107     const KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)buffer;
3108     DWORD dwSize = sizeof(buffer);
3109     UNICODE_STRING valueName;
3110
3111     RtlInitUnicodeString( &valueName, szValueName );
3112
3113     TRACE("%p, %s\n", hKey, debugstr_w(szValueName));
3114     if (NtQueryValueKey( hKey, &valueName, KeyValuePartialInformation,
3115                          buffer, dwSize, &dwSize ) == STATUS_SUCCESS &&
3116         info->DataLength == sizeof(DWORD))
3117     {
3118         memcpy(lpVal, info->Data, sizeof(DWORD));
3119         return TRUE;
3120     }
3121
3122     return FALSE;
3123 }
3124
3125 static BOOL NLS_GetLanguageGroupName(LGRPID lgrpid, LPWSTR szName, ULONG nameSize)
3126 {
3127     LANGID  langId;
3128     LPCWSTR szResourceName = MAKEINTRESOURCEW(((lgrpid + 0x2000) >> 4) + 1);
3129     HRSRC   hResource;
3130     BOOL    bRet = FALSE;
3131
3132     /* FIXME: Is it correct to use the system default langid? */
3133     langId = GetSystemDefaultLangID();
3134
3135     if (SUBLANGID(langId) == SUBLANG_NEUTRAL)
3136         langId = MAKELANGID( PRIMARYLANGID(langId), SUBLANG_DEFAULT );
3137
3138     hResource = FindResourceExW( kernel32_handle, (LPWSTR)RT_STRING, szResourceName, langId );
3139
3140     if (hResource)
3141     {
3142         HGLOBAL hResDir = LoadResource( kernel32_handle, hResource );
3143
3144         if (hResDir)
3145         {
3146             ULONG   iResourceIndex = lgrpid & 0xf;
3147             LPCWSTR lpResEntry = LockResource( hResDir );
3148             ULONG   i;
3149
3150             for (i = 0; i < iResourceIndex; i++)
3151                 lpResEntry += *lpResEntry + 1;
3152
3153             if (*lpResEntry < nameSize)
3154             {
3155                 memcpy( szName, lpResEntry + 1, *lpResEntry * sizeof(WCHAR) );
3156                 szName[*lpResEntry] = '\0';
3157                 bRet = TRUE;
3158             }
3159
3160         }
3161         FreeResource( hResource );
3162     }
3163     return bRet;
3164 }
3165
3166 /* Registry keys for NLS related information */
3167
3168 static const WCHAR szCountryListName[] = {
3169     'M','a','c','h','i','n','e','\\','S','o','f','t','w','a','r','e','\\',
3170     'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\',
3171     'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
3172     'T','e','l','e','p','h','o','n','y','\\',
3173     'C','o','u','n','t','r','y',' ','L','i','s','t','\0'
3174 };
3175
3176
3177 /* Callback function ptrs for EnumSystemLanguageGroupsA/W */
3178 typedef struct
3179 {
3180   LANGUAGEGROUP_ENUMPROCA procA;
3181   LANGUAGEGROUP_ENUMPROCW procW;
3182   DWORD    dwFlags;
3183   LONG_PTR lParam;
3184 } ENUMLANGUAGEGROUP_CALLBACKS;
3185
3186 /* Internal implementation of EnumSystemLanguageGroupsA/W */
3187 static BOOL NLS_EnumSystemLanguageGroups(ENUMLANGUAGEGROUP_CALLBACKS *lpProcs)
3188 {
3189     WCHAR szNumber[10], szValue[4];
3190     HANDLE hKey;
3191     BOOL bContinue = TRUE;
3192     ULONG ulIndex = 0;
3193
3194     if (!lpProcs)
3195     {
3196         SetLastError(ERROR_INVALID_PARAMETER);
3197         return FALSE;
3198     }
3199
3200     switch (lpProcs->dwFlags)
3201     {
3202     case 0:
3203         /* Default to LGRPID_INSTALLED */
3204         lpProcs->dwFlags = LGRPID_INSTALLED;
3205         /* Fall through... */
3206     case LGRPID_INSTALLED:
3207     case LGRPID_SUPPORTED:
3208         break;
3209     default:
3210         SetLastError(ERROR_INVALID_FLAGS);
3211         return FALSE;
3212     }
3213
3214     hKey = NLS_RegOpenKey( 0, szLangGroupsKeyName );
3215
3216     if (!hKey)
3217         FIXME("NLS registry key not found. Please apply the default registry file 'wine.inf'\n");
3218
3219     while (bContinue)
3220     {
3221         if (NLS_RegEnumValue( hKey, ulIndex, szNumber, sizeof(szNumber),
3222                               szValue, sizeof(szValue) ))
3223         {
3224             BOOL bInstalled = szValue[0] == '1' ? TRUE : FALSE;
3225             LGRPID lgrpid = strtoulW( szNumber, NULL, 16 );
3226
3227             TRACE("grpid %s (%sinstalled)\n", debugstr_w(szNumber),
3228                    bInstalled ? "" : "not ");
3229
3230             if (lpProcs->dwFlags == LGRPID_SUPPORTED || bInstalled)
3231             {
3232                 WCHAR szGrpName[48];
3233
3234                 if (!NLS_GetLanguageGroupName( lgrpid, szGrpName, sizeof(szGrpName) / sizeof(WCHAR) ))
3235                     szGrpName[0] = '\0';
3236
3237                 if (lpProcs->procW)
3238                     bContinue = lpProcs->procW( lgrpid, szNumber, szGrpName, lpProcs->dwFlags,
3239                                                 lpProcs->lParam );
3240                 else
3241                 {
3242                     char szNumberA[sizeof(szNumber)/sizeof(WCHAR)];
3243                     char szGrpNameA[48];
3244
3245                     /* FIXME: MSDN doesn't say which code page the W->A translation uses,
3246                      *        or whether the language names are ever localised. Assume CP_ACP.
3247                      */
3248
3249                     WideCharToMultiByte(CP_ACP, 0, szNumber, -1, szNumberA, sizeof(szNumberA), 0, 0);
3250                     WideCharToMultiByte(CP_ACP, 0, szGrpName, -1, szGrpNameA, sizeof(szGrpNameA), 0, 0);
3251
3252                     bContinue = lpProcs->procA( lgrpid, szNumberA, szGrpNameA, lpProcs->dwFlags,
3253                                                 lpProcs->lParam );
3254                 }
3255             }
3256
3257             ulIndex++;
3258         }
3259         else
3260             bContinue = FALSE;
3261
3262         if (!bContinue)
3263             break;
3264     }
3265
3266     if (hKey)
3267         NtClose( hKey );
3268
3269     return TRUE;
3270 }
3271
3272 /******************************************************************************
3273  *           EnumSystemLanguageGroupsA    (KERNEL32.@)
3274  *
3275  * Call a users function for each language group available on the system.
3276  *
3277  * PARAMS
3278  *  pLangGrpEnumProc [I] Callback function to call for each language group
3279  *  dwFlags          [I] LGRPID_SUPPORTED=All Supported, LGRPID_INSTALLED=Installed only
3280  *  lParam           [I] User parameter to pass to pLangGrpEnumProc
3281  *
3282  * RETURNS
3283  *  Success: TRUE.
3284  *  Failure: FALSE. Use GetLastError() to determine the cause.
3285  */
3286 BOOL WINAPI EnumSystemLanguageGroupsA(LANGUAGEGROUP_ENUMPROCA pLangGrpEnumProc,
3287                                       DWORD dwFlags, LONG_PTR lParam)
3288 {
3289     ENUMLANGUAGEGROUP_CALLBACKS procs;
3290
3291     TRACE("(%p,0x%08X,0x%08lX)\n", pLangGrpEnumProc, dwFlags, lParam);
3292
3293     procs.procA = pLangGrpEnumProc;
3294     procs.procW = NULL;
3295     procs.dwFlags = dwFlags;
3296     procs.lParam = lParam;
3297
3298     return NLS_EnumSystemLanguageGroups( pLangGrpEnumProc ? &procs : NULL);
3299 }
3300
3301 /******************************************************************************
3302  *           EnumSystemLanguageGroupsW    (KERNEL32.@)
3303  *
3304  * See EnumSystemLanguageGroupsA.
3305  */
3306 BOOL WINAPI EnumSystemLanguageGroupsW(LANGUAGEGROUP_ENUMPROCW pLangGrpEnumProc,
3307                                       DWORD dwFlags, LONG_PTR lParam)
3308 {
3309     ENUMLANGUAGEGROUP_CALLBACKS procs;
3310
3311     TRACE("(%p,0x%08X,0x%08lX)\n", pLangGrpEnumProc, dwFlags, lParam);
3312
3313     procs.procA = NULL;
3314     procs.procW = pLangGrpEnumProc;
3315     procs.dwFlags = dwFlags;
3316     procs.lParam = lParam;
3317
3318     return NLS_EnumSystemLanguageGroups( pLangGrpEnumProc ? &procs : NULL);
3319 }
3320
3321 /******************************************************************************
3322  *           IsValidLanguageGroup    (KERNEL32.@)
3323  *
3324  * Determine if a language group is supported and/or installed.
3325  *
3326  * PARAMS
3327  *  lgrpid  [I] Language Group Id (LGRPID_ values from "winnls.h")
3328  *  dwFlags [I] LGRPID_SUPPORTED=Supported, LGRPID_INSTALLED=Installed
3329  *
3330  * RETURNS
3331  *  TRUE, if lgrpid is supported and/or installed, according to dwFlags.
3332  *  FALSE otherwise.
3333  */
3334 BOOL WINAPI IsValidLanguageGroup(LGRPID lgrpid, DWORD dwFlags)
3335 {
3336     static const WCHAR szFormat[] = { '%','x','\0' };
3337     WCHAR szValueName[16], szValue[2];
3338     BOOL bSupported = FALSE, bInstalled = FALSE;
3339     HANDLE hKey;
3340
3341
3342     switch (dwFlags)
3343     {
3344     case LGRPID_INSTALLED:
3345     case LGRPID_SUPPORTED:
3346
3347         hKey = NLS_RegOpenKey( 0, szLangGroupsKeyName );
3348
3349         sprintfW( szValueName, szFormat, lgrpid );
3350
3351         if (NLS_RegGetDword( hKey, szValueName, (LPDWORD)szValue ))
3352         {
3353             bSupported = TRUE;
3354
3355             if (szValue[0] == '1')
3356                 bInstalled = TRUE;
3357         }
3358
3359         if (hKey)
3360             NtClose( hKey );
3361
3362         break;
3363     }
3364
3365     if ((dwFlags == LGRPID_SUPPORTED && bSupported) ||
3366         (dwFlags == LGRPID_INSTALLED && bInstalled))
3367         return TRUE;
3368
3369     return FALSE;
3370 }
3371
3372 /* Callback function ptrs for EnumLanguageGrouplocalesA/W */
3373 typedef struct
3374 {
3375   LANGGROUPLOCALE_ENUMPROCA procA;
3376   LANGGROUPLOCALE_ENUMPROCW procW;
3377   DWORD    dwFlags;
3378   LGRPID   lgrpid;
3379   LONG_PTR lParam;
3380 } ENUMLANGUAGEGROUPLOCALE_CALLBACKS;
3381
3382 /* Internal implementation of EnumLanguageGrouplocalesA/W */
3383 static BOOL NLS_EnumLanguageGroupLocales(ENUMLANGUAGEGROUPLOCALE_CALLBACKS *lpProcs)
3384 {
3385     static const WCHAR szAlternateSortsKeyName[] = {
3386       'A','l','t','e','r','n','a','t','e',' ','S','o','r','t','s','\0'
3387     };
3388     WCHAR szNumber[10], szValue[4];
3389     HANDLE hKey;
3390     BOOL bContinue = TRUE, bAlternate = FALSE;
3391     LGRPID lgrpid;
3392     ULONG ulIndex = 1;  /* Ignore default entry of 1st key */
3393
3394     if (!lpProcs || !lpProcs->lgrpid || lpProcs->lgrpid > LGRPID_ARMENIAN)
3395     {
3396         SetLastError(ERROR_INVALID_PARAMETER);
3397         return FALSE;
3398     }
3399
3400     if (lpProcs->dwFlags)
3401     {
3402         SetLastError(ERROR_INVALID_FLAGS);
3403         return FALSE;
3404     }
3405
3406     hKey = NLS_RegOpenKey( 0, szLocaleKeyName );
3407
3408     if (!hKey)
3409         WARN("NLS registry key not found. Please apply the default registry file 'wine.inf'\n");
3410
3411     while (bContinue)
3412     {
3413         if (NLS_RegEnumValue( hKey, ulIndex, szNumber, sizeof(szNumber),
3414                               szValue, sizeof(szValue) ))
3415         {
3416             lgrpid = strtoulW( szValue, NULL, 16 );
3417
3418             TRACE("lcid %s, grpid %d (%smatched)\n", debugstr_w(szNumber),
3419                    lgrpid, lgrpid == lpProcs->lgrpid ? "" : "not ");
3420
3421             if (lgrpid == lpProcs->lgrpid)
3422             {
3423                 LCID lcid;
3424
3425                 lcid = strtoulW( szNumber, NULL, 16 );
3426
3427                 /* FIXME: native returns extra text for a few (17/150) locales, e.g:
3428                  * '00000437          ;Georgian'
3429                  * At present we only pass the LCID string.
3430                  */
3431
3432                 if (lpProcs->procW)
3433                     bContinue = lpProcs->procW( lgrpid, lcid, szNumber, lpProcs->lParam );
3434                 else
3435                 {
3436                     char szNumberA[sizeof(szNumber)/sizeof(WCHAR)];
3437
3438                     WideCharToMultiByte(CP_ACP, 0, szNumber, -1, szNumberA, sizeof(szNumberA), 0, 0);
3439
3440                     bContinue = lpProcs->procA( lgrpid, lcid, szNumberA, lpProcs->lParam );
3441                 }
3442             }
3443
3444             ulIndex++;
3445         }
3446         else
3447         {
3448             /* Finished enumerating this key */
3449             if (!bAlternate)
3450             {
3451                 /* Enumerate alternate sorts also */
3452                 hKey = NLS_RegOpenKey( hKey, szAlternateSortsKeyName );
3453                 bAlternate = TRUE;
3454                 ulIndex = 0;
3455             }
3456             else
3457                 bContinue = FALSE; /* Finished both keys */
3458         }
3459
3460         if (!bContinue)
3461             break;
3462     }
3463
3464     if (hKey)
3465         NtClose( hKey );
3466
3467     return TRUE;
3468 }
3469
3470 /******************************************************************************
3471  *           EnumLanguageGroupLocalesA    (KERNEL32.@)
3472  *
3473  * Call a users function for every locale in a language group available on the system.
3474  *
3475  * PARAMS
3476  *  pLangGrpLcEnumProc [I] Callback function to call for each locale
3477  *  lgrpid             [I] Language group (LGRPID_ values from "winnls.h")
3478  *  dwFlags            [I] Reserved, set to 0
3479  *  lParam             [I] User parameter to pass to pLangGrpLcEnumProc
3480  *
3481  * RETURNS
3482  *  Success: TRUE.
3483  *  Failure: FALSE. Use GetLastError() to determine the cause.
3484  */
3485 BOOL WINAPI EnumLanguageGroupLocalesA(LANGGROUPLOCALE_ENUMPROCA pLangGrpLcEnumProc,
3486                                       LGRPID lgrpid, DWORD dwFlags, LONG_PTR lParam)
3487 {
3488     ENUMLANGUAGEGROUPLOCALE_CALLBACKS callbacks;
3489
3490     TRACE("(%p,0x%08X,0x%08X,0x%08lX)\n", pLangGrpLcEnumProc, lgrpid, dwFlags, lParam);
3491
3492     callbacks.procA   = pLangGrpLcEnumProc;
3493     callbacks.procW   = NULL;
3494     callbacks.dwFlags = dwFlags;
3495     callbacks.lgrpid  = lgrpid;
3496     callbacks.lParam  = lParam;
3497
3498     return NLS_EnumLanguageGroupLocales( pLangGrpLcEnumProc ? &callbacks : NULL );
3499 }
3500
3501 /******************************************************************************
3502  *           EnumLanguageGroupLocalesW    (KERNEL32.@)
3503  *
3504  * See EnumLanguageGroupLocalesA.
3505  */
3506 BOOL WINAPI EnumLanguageGroupLocalesW(LANGGROUPLOCALE_ENUMPROCW pLangGrpLcEnumProc,
3507                                       LGRPID lgrpid, DWORD dwFlags, LONG_PTR lParam)
3508 {
3509     ENUMLANGUAGEGROUPLOCALE_CALLBACKS callbacks;
3510
3511     TRACE("(%p,0x%08X,0x%08X,0x%08lX)\n", pLangGrpLcEnumProc, lgrpid, dwFlags, lParam);
3512
3513     callbacks.procA   = NULL;
3514     callbacks.procW   = pLangGrpLcEnumProc;
3515     callbacks.dwFlags = dwFlags;
3516     callbacks.lgrpid  = lgrpid;
3517     callbacks.lParam  = lParam;
3518
3519     return NLS_EnumLanguageGroupLocales( pLangGrpLcEnumProc ? &callbacks : NULL );
3520 }
3521
3522 /******************************************************************************
3523  *           EnumSystemGeoID    (KERNEL32.@)
3524  *
3525  * Call a users function for every location available on the system.
3526  *
3527  * PARAMS
3528  *  geoclass     [I] Type of information desired (SYSGEOTYPE enum from "winnls.h")
3529  *  reserved     [I] Reserved, set to 0
3530  *  pGeoEnumProc [I] Callback function to call for each location
3531  *
3532  * RETURNS
3533  *  Success: TRUE.
3534  *  Failure: FALSE. Use GetLastError() to determine the cause.
3535  */
3536 BOOL WINAPI EnumSystemGeoID(GEOCLASS geoclass, GEOID reserved, GEO_ENUMPROC pGeoEnumProc)
3537 {
3538     static const WCHAR szCountryCodeValueName[] = {
3539       'C','o','u','n','t','r','y','C','o','d','e','\0'
3540     };
3541     WCHAR szNumber[10];
3542     HANDLE hKey;
3543     ULONG ulIndex = 0;
3544
3545     TRACE("(0x%08X,0x%08X,%p)\n", geoclass, reserved, pGeoEnumProc);
3546
3547     if (geoclass != GEOCLASS_NATION || reserved || !pGeoEnumProc)
3548     {
3549         SetLastError(ERROR_INVALID_PARAMETER);
3550         return FALSE;
3551     }
3552
3553     hKey = NLS_RegOpenKey( 0, szCountryListName );
3554
3555     while (NLS_RegEnumSubKey( hKey, ulIndex, szNumber, sizeof(szNumber) ))
3556     {
3557         BOOL bContinue = TRUE;
3558         DWORD dwGeoId;
3559         HANDLE hSubKey = NLS_RegOpenKey( hKey, szNumber );
3560
3561         if (hSubKey)
3562         {
3563             if (NLS_RegGetDword( hSubKey, szCountryCodeValueName, &dwGeoId ))
3564             {
3565                 TRACE("Got geoid %d\n", dwGeoId);
3566
3567                 if (!pGeoEnumProc( dwGeoId ))
3568                     bContinue = FALSE;
3569             }
3570
3571             NtClose( hSubKey );
3572         }
3573
3574         if (!bContinue)
3575             break;
3576
3577         ulIndex++;
3578     }
3579
3580     if (hKey)
3581         NtClose( hKey );
3582
3583     return TRUE;
3584 }
3585
3586 /******************************************************************************
3587  *           InvalidateNLSCache           (KERNEL32.@)
3588  *
3589  * Invalidate the cache of NLS values.
3590  *
3591  * PARAMS
3592  *  None.
3593  *
3594  * RETURNS
3595  *  Success: TRUE.
3596  *  Failure: FALSE.
3597  */
3598 BOOL WINAPI InvalidateNLSCache(void)
3599 {
3600   FIXME("() stub\n");
3601   return FALSE;
3602 }
3603
3604 /******************************************************************************
3605  *           GetUserGeoID (KERNEL32.@)
3606  */
3607 GEOID WINAPI GetUserGeoID( GEOCLASS GeoClass )
3608 {
3609     GEOID ret = GEOID_NOT_AVAILABLE;
3610     static const WCHAR geoW[] = {'G','e','o',0};
3611     static const WCHAR nationW[] = {'N','a','t','i','o','n',0};
3612     WCHAR bufferW[40], *end;
3613     DWORD count;
3614     HANDLE hkey, hSubkey = 0;
3615     UNICODE_STRING keyW;
3616     const KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)bufferW;
3617     RtlInitUnicodeString( &keyW, nationW );
3618     count = sizeof(bufferW);
3619
3620     if(!(hkey = create_registry_key())) return ret;
3621
3622     switch( GeoClass ){
3623     case GEOCLASS_NATION:
3624         if ((hSubkey = NLS_RegOpenKey(hkey, geoW)))
3625         {
3626             if((NtQueryValueKey(hSubkey, &keyW, KeyValuePartialInformation,
3627                                 bufferW, count, &count) == STATUS_SUCCESS ) && info->DataLength)
3628                 ret = strtolW((LPCWSTR)info->Data, &end, 10);
3629         }
3630         break;
3631     case GEOCLASS_REGION:
3632         FIXME("GEOCLASS_REGION not handled yet\n");
3633         break;
3634     }
3635
3636     NtClose(hkey);
3637     if (hSubkey) NtClose(hSubkey);
3638     return ret;
3639 }
3640
3641 /******************************************************************************
3642  *           SetUserGeoID (KERNEL32.@)
3643  */
3644 BOOL WINAPI SetUserGeoID( GEOID GeoID )
3645 {
3646     static const WCHAR geoW[] = {'G','e','o',0};
3647     static const WCHAR nationW[] = {'N','a','t','i','o','n',0};
3648     static const WCHAR formatW[] = {'%','i',0};
3649     UNICODE_STRING nameW,keyW;
3650     WCHAR bufferW[10];
3651     OBJECT_ATTRIBUTES attr;
3652     HANDLE hkey;
3653
3654     if(!(hkey = create_registry_key())) return FALSE;
3655
3656     attr.Length = sizeof(attr);
3657     attr.RootDirectory = hkey;
3658     attr.ObjectName = &nameW;
3659     attr.Attributes = 0;
3660     attr.SecurityDescriptor = NULL;
3661     attr.SecurityQualityOfService = NULL;
3662     RtlInitUnicodeString( &nameW, geoW );
3663     RtlInitUnicodeString( &keyW, nationW );
3664
3665     if (NtCreateKey( &hkey, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL ) != STATUS_SUCCESS)
3666
3667     {
3668         NtClose(attr.RootDirectory);
3669         return FALSE;
3670     }
3671
3672     sprintfW(bufferW, formatW, GeoID);
3673     NtSetValueKey(hkey, &keyW, 0, REG_SZ, bufferW, (strlenW(bufferW) + 1) * sizeof(WCHAR));
3674     NtClose(attr.RootDirectory);
3675     NtClose(hkey);
3676     return TRUE;
3677 }
3678
3679 typedef struct
3680 {
3681     union
3682     {
3683         UILANGUAGE_ENUMPROCA procA;
3684         UILANGUAGE_ENUMPROCW procW;
3685     } u;
3686     DWORD flags;
3687     LONG_PTR param;
3688 } ENUM_UILANG_CALLBACK;
3689
3690 static BOOL CALLBACK enum_uilang_proc_a( HMODULE hModule, LPCSTR type,
3691                                          LPCSTR name, WORD LangID, LONG_PTR lParam )
3692 {
3693     ENUM_UILANG_CALLBACK *enum_uilang = (ENUM_UILANG_CALLBACK *)lParam;
3694     char buf[20];
3695
3696     sprintf(buf, "%08x", (UINT)LangID);
3697     return enum_uilang->u.procA( buf, enum_uilang->param );
3698 }
3699
3700 static BOOL CALLBACK enum_uilang_proc_w( HMODULE hModule, LPCWSTR type,
3701                                          LPCWSTR name, WORD LangID, LONG_PTR lParam )
3702 {
3703     static const WCHAR formatW[] = {'%','0','8','x',0};
3704     ENUM_UILANG_CALLBACK *enum_uilang = (ENUM_UILANG_CALLBACK *)lParam;
3705     WCHAR buf[20];
3706
3707     sprintfW( buf, formatW, (UINT)LangID );
3708     return enum_uilang->u.procW( buf, enum_uilang->param );
3709 }
3710
3711 /******************************************************************************
3712  *           EnumUILanguagesA (KERNEL32.@)
3713  */
3714 BOOL WINAPI EnumUILanguagesA(UILANGUAGE_ENUMPROCA pUILangEnumProc, DWORD dwFlags, LONG_PTR lParam)
3715 {
3716     ENUM_UILANG_CALLBACK enum_uilang;
3717
3718     TRACE("%p, %x, %lx\n", pUILangEnumProc, dwFlags, lParam);
3719
3720     if(!pUILangEnumProc) {
3721         SetLastError(ERROR_INVALID_PARAMETER);
3722         return FALSE;
3723     }
3724     if(dwFlags) {
3725         SetLastError(ERROR_INVALID_FLAGS);
3726         return FALSE;
3727     }
3728
3729     enum_uilang.u.procA = pUILangEnumProc;
3730     enum_uilang.flags = dwFlags;
3731     enum_uilang.param = lParam;
3732
3733     EnumResourceLanguagesA( kernel32_handle, (LPCSTR)RT_STRING,
3734                             (LPCSTR)LOCALE_ILANGUAGE, enum_uilang_proc_a,
3735                             (LONG_PTR)&enum_uilang);
3736     return TRUE;
3737 }
3738
3739 /******************************************************************************
3740  *           EnumUILanguagesW (KERNEL32.@)
3741  */
3742 BOOL WINAPI EnumUILanguagesW(UILANGUAGE_ENUMPROCW pUILangEnumProc, DWORD dwFlags, LONG_PTR lParam)
3743 {
3744     ENUM_UILANG_CALLBACK enum_uilang;
3745
3746     TRACE("%p, %x, %lx\n", pUILangEnumProc, dwFlags, lParam);
3747
3748
3749     if(!pUILangEnumProc) {
3750         SetLastError(ERROR_INVALID_PARAMETER);
3751         return FALSE;
3752     }
3753     if(dwFlags) {
3754         SetLastError(ERROR_INVALID_FLAGS);
3755         return FALSE;
3756     }
3757
3758     enum_uilang.u.procW = pUILangEnumProc;
3759     enum_uilang.flags = dwFlags;
3760     enum_uilang.param = lParam;
3761
3762     EnumResourceLanguagesW( kernel32_handle, (LPCWSTR)RT_STRING,
3763                             (LPCWSTR)LOCALE_ILANGUAGE, enum_uilang_proc_w,
3764                             (LONG_PTR)&enum_uilang);
3765     return TRUE;
3766 }
3767
3768 INT WINAPI GetGeoInfoW(GEOID GeoId, GEOTYPE GeoType, LPWSTR lpGeoData, 
3769                 int cchData, LANGID language)
3770 {
3771     FIXME("%d %d %p %d %d\n", GeoId, GeoType, lpGeoData, cchData, language);
3772     return 0;
3773 }
3774
3775 INT WINAPI GetGeoInfoA(GEOID GeoId, GEOTYPE GeoType, LPSTR lpGeoData, 
3776                 int cchData, LANGID language)
3777 {
3778     FIXME("%d %d %p %d %d\n", GeoId, GeoType, lpGeoData, cchData, language);
3779     return 0;
3780 }