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