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
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.
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.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wine/port.h"
36 # include <CoreFoundation/CFBundle.h>
37 # include <CoreFoundation/CFLocale.h>
38 # include <CoreFoundation/CFString.h>
42 #define WIN32_NO_STATUS
45 #include "winuser.h" /* for RT_STRINGW */
47 #include "wine/unicode.h"
51 #include "kernel_private.h"
52 #include "wine/debug.h"
54 WINE_DEFAULT_DEBUG_CHANNEL(nls
);
56 #define LOCALE_LOCALEINFOFLAGSMASK (LOCALE_NOUSEROVERRIDE|LOCALE_USE_CP_ACP|\
57 LOCALE_RETURN_NUMBER|LOCALE_RETURN_GENITIVE_NAMES)
59 /* current code pages */
60 static const union cptable
*ansi_cptable
;
61 static const union cptable
*oem_cptable
;
62 static const union cptable
*mac_cptable
;
63 static const union cptable
*unix_cptable
; /* NULL if UTF8 */
65 static const WCHAR szNlsKeyName
[] = {
66 'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
67 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
68 'C','o','n','t','r','o','l','\\','N','l','s','\0'
71 static const WCHAR szLocaleKeyName
[] = {
72 'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
73 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
74 'C','o','n','t','r','o','l','\\','N','l','s','\\','L','o','c','a','l','e',0
77 static const WCHAR szLangGroupsKeyName
[] = {
78 'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
79 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
80 'C','o','n','t','r','o','l','\\','N','l','s','\\',
81 'L','a','n','g','u','a','g','e',' ','G','r','o','u','p','s',0
84 /* Charset to codepage map, sorted by name. */
85 static const struct charset_entry
87 const char *charset_name
;
126 { "ISO88591", 28591 },
127 { "ISO885910", 28600 },
128 { "ISO885913", 28603 },
129 { "ISO885914", 28604 },
130 { "ISO885915", 28605 },
131 { "ISO885916", 28606 },
132 { "ISO88592", 28592 },
133 { "ISO88593", 28593 },
134 { "ISO88594", 28594 },
135 { "ISO88595", 28595 },
136 { "ISO88596", 28596 },
137 { "ISO88597", 28597 },
138 { "ISO88598", 28598 },
139 { "ISO88599", 28599 },
148 WCHAR win_name
[128]; /* Windows name ("en-US") */
149 WCHAR lang
[128]; /* language ("en") (note: buffer contains the other strings too) */
150 WCHAR
*country
; /* country ("US") */
151 WCHAR
*charset
; /* charset ("UTF-8") for Unix format only */
152 WCHAR
*script
; /* script ("Latn") for Windows format only */
153 WCHAR
*modifier
; /* modifier or sort order */
154 LCID lcid
; /* corresponding LCID */
155 int matches
; /* number of elements matching LCID (0..4) */
156 UINT codepage
; /* codepage corresponding to charset */
159 /* locale ids corresponding to the various Unix locale parameters */
160 static LCID lcid_LC_COLLATE
;
161 static LCID lcid_LC_CTYPE
;
162 static LCID lcid_LC_MESSAGES
;
163 static LCID lcid_LC_MONETARY
;
164 static LCID lcid_LC_NUMERIC
;
165 static LCID lcid_LC_TIME
;
166 static LCID lcid_LC_PAPER
;
167 static LCID lcid_LC_MEASUREMENT
;
168 static LCID lcid_LC_TELEPHONE
;
170 /* Copy Ascii string to Unicode without using codepages */
171 static inline void strcpynAtoW( WCHAR
*dst
, const char *src
, size_t n
)
173 while (n
> 1 && *src
)
175 *dst
++ = (unsigned char)*src
++;
182 /***********************************************************************
185 * Retrieve the ANSI codepage for a given locale.
187 static inline UINT
get_lcid_codepage( LCID lcid
)
190 if (!GetLocaleInfoW( lcid
, LOCALE_IDEFAULTANSICODEPAGE
|LOCALE_RETURN_NUMBER
, (WCHAR
*)&ret
,
191 sizeof(ret
)/sizeof(WCHAR
) )) ret
= 0;
196 /***********************************************************************
199 * Find the table for a given codepage, handling CP_ACP etc. pseudo-codepages
201 static const union cptable
*get_codepage_table( unsigned int codepage
)
203 const union cptable
*ret
= NULL
;
205 assert( ansi_cptable
); /* init must have been done already */
219 if (NtCurrentTeb()->CurrentLocale
== GetUserDefaultLCID()) return ansi_cptable
;
220 codepage
= get_lcid_codepage( NtCurrentTeb()->CurrentLocale
);
223 if (codepage
== ansi_cptable
->info
.codepage
) return ansi_cptable
;
224 if (codepage
== oem_cptable
->info
.codepage
) return oem_cptable
;
225 if (codepage
== mac_cptable
->info
.codepage
) return mac_cptable
;
226 ret
= wine_cp_get_table( codepage
);
233 /***********************************************************************
234 * charset_cmp (internal)
236 static int charset_cmp( const void *name
, const void *entry
)
238 const struct charset_entry
*charset
= entry
;
239 return strcasecmp( name
, charset
->charset_name
);
242 /***********************************************************************
245 static UINT
find_charset( const WCHAR
*name
)
247 const struct charset_entry
*entry
;
248 char charset_name
[16];
251 /* remove punctuation characters from charset name */
252 for (i
= j
= 0; name
[i
] && j
< sizeof(charset_name
)-1; i
++)
253 if (isalnum((unsigned char)name
[i
])) charset_name
[j
++] = name
[i
];
256 entry
= bsearch( charset_name
, charset_names
,
257 sizeof(charset_names
)/sizeof(charset_names
[0]),
258 sizeof(charset_names
[0]), charset_cmp
);
259 if (entry
) return entry
->codepage
;
264 /***********************************************************************
265 * find_locale_id_callback
267 static BOOL CALLBACK
find_locale_id_callback( HMODULE hModule
, LPCWSTR type
,
268 LPCWSTR name
, WORD LangID
, LPARAM lParam
)
270 struct locale_name
*data
= (struct locale_name
*)lParam
;
273 LCID lcid
= MAKELCID( LangID
, SORT_DEFAULT
); /* FIXME: handle sort order */
275 if (PRIMARYLANGID(LangID
) == LANG_NEUTRAL
) return TRUE
; /* continue search */
277 /* first check exact name */
278 if (data
->win_name
[0] &&
279 GetLocaleInfoW( lcid
, LOCALE_SNAME
| LOCALE_NOUSEROVERRIDE
,
280 buffer
, sizeof(buffer
)/sizeof(WCHAR
) ))
282 if (!strcmpW( data
->win_name
, buffer
))
284 matches
= 4; /* everything matches */
289 if (!GetLocaleInfoW( lcid
, LOCALE_SISO639LANGNAME
| LOCALE_NOUSEROVERRIDE
,
290 buffer
, sizeof(buffer
)/sizeof(WCHAR
) ))
292 if (strcmpW( buffer
, data
->lang
)) return TRUE
;
293 matches
++; /* language name matched */
297 if (GetLocaleInfoW( lcid
, LOCALE_SISO3166CTRYNAME
|LOCALE_NOUSEROVERRIDE
,
298 buffer
, sizeof(buffer
)/sizeof(WCHAR
) ))
300 if (strcmpW( buffer
, data
->country
)) goto done
;
301 matches
++; /* country name matched */
304 else /* match default language */
306 if (SUBLANGID(LangID
) == SUBLANG_DEFAULT
) matches
++;
312 if (GetLocaleInfoW( lcid
, LOCALE_IDEFAULTUNIXCODEPAGE
| LOCALE_RETURN_NUMBER
,
313 (LPWSTR
)&unix_cp
, sizeof(unix_cp
)/sizeof(WCHAR
) ))
315 if (unix_cp
== data
->codepage
) matches
++;
319 /* FIXME: check sort order */
322 if (matches
> data
->matches
)
325 data
->matches
= matches
;
327 return (data
->matches
< 4); /* no need to continue for perfect match */
331 /***********************************************************************
334 * Parse a locale name into a struct locale_name, handling both Windows and Unix formats.
335 * Unix format is: lang[_country][.charset][@modifier]
336 * Windows format is: lang[-script][-country][_modifier]
338 static void parse_locale_name( const WCHAR
*str
, struct locale_name
*name
)
340 static const WCHAR sepW
[] = {'-','_','.','@',0};
341 static const WCHAR winsepW
[] = {'-','_',0};
342 static const WCHAR posixW
[] = {'P','O','S','I','X',0};
343 static const WCHAR cW
[] = {'C',0};
344 static const WCHAR latinW
[] = {'l','a','t','i','n',0};
345 static const WCHAR latnW
[] = {'-','L','a','t','n',0};
348 TRACE("%s\n", debugstr_w(str
));
350 name
->country
= name
->charset
= name
->script
= name
->modifier
= NULL
;
351 name
->lcid
= MAKELCID( MAKELANGID(LANG_ENGLISH
,SUBLANG_DEFAULT
), SORT_DEFAULT
);
354 name
->win_name
[0] = 0;
355 lstrcpynW( name
->lang
, str
, sizeof(name
->lang
)/sizeof(WCHAR
) );
357 if (!(p
= strpbrkW( name
->lang
, sepW
)))
359 if (!strcmpW( name
->lang
, posixW
) || !strcmpW( name
->lang
, cW
))
361 name
->matches
= 4; /* perfect match for default English lcid */
364 strcpyW( name
->win_name
, name
->lang
);
366 else if (*p
== '-') /* Windows format */
368 strcpyW( name
->win_name
, name
->lang
);
371 if (!(p
= strpbrkW( p
, winsepW
))) goto done
;
375 name
->script
= name
->country
;
377 if (!(p
= strpbrkW( p
, winsepW
))) goto done
;
382 else /* Unix format */
388 p
= strpbrkW( p
, sepW
+ 2 );
394 p
= strchrW( p
, '@' );
403 name
->codepage
= find_charset( name
->charset
);
405 /* rebuild a Windows name if possible */
407 if (name
->charset
) goto done
; /* can't specify charset in Windows format */
408 if (name
->modifier
&& strcmpW( name
->modifier
, latinW
))
409 goto done
; /* only Latn script supported for now */
410 strcpyW( name
->win_name
, name
->lang
);
411 if (name
->modifier
) strcatW( name
->win_name
, latnW
);
414 p
= name
->win_name
+ strlenW(name
->win_name
);
416 strcpyW( p
, name
->country
);
420 EnumResourceLanguagesW( kernel32_handle
, (LPCWSTR
)RT_STRING
, (LPCWSTR
)LOCALE_ILANGUAGE
,
421 find_locale_id_callback
, (LPARAM
)name
);
425 /***********************************************************************
426 * convert_default_lcid
428 * Get the default LCID to use for a given lctype in GetLocaleInfo.
430 static LCID
convert_default_lcid( LCID lcid
, LCTYPE lctype
)
432 if (lcid
== LOCALE_SYSTEM_DEFAULT
||
433 lcid
== LOCALE_USER_DEFAULT
||
434 lcid
== LOCALE_NEUTRAL
)
438 switch(lctype
& 0xffff)
440 case LOCALE_SSORTNAME
:
441 default_id
= lcid_LC_COLLATE
;
444 case LOCALE_FONTSIGNATURE
:
445 case LOCALE_IDEFAULTANSICODEPAGE
:
446 case LOCALE_IDEFAULTCODEPAGE
:
447 case LOCALE_IDEFAULTEBCDICCODEPAGE
:
448 case LOCALE_IDEFAULTMACCODEPAGE
:
449 case LOCALE_IDEFAULTUNIXCODEPAGE
:
450 default_id
= lcid_LC_CTYPE
;
453 case LOCALE_ICURRDIGITS
:
454 case LOCALE_ICURRENCY
:
455 case LOCALE_IINTLCURRDIGITS
:
456 case LOCALE_INEGCURR
:
457 case LOCALE_INEGSEPBYSPACE
:
458 case LOCALE_INEGSIGNPOSN
:
459 case LOCALE_INEGSYMPRECEDES
:
460 case LOCALE_IPOSSEPBYSPACE
:
461 case LOCALE_IPOSSIGNPOSN
:
462 case LOCALE_IPOSSYMPRECEDES
:
463 case LOCALE_SCURRENCY
:
464 case LOCALE_SINTLSYMBOL
:
465 case LOCALE_SMONDECIMALSEP
:
466 case LOCALE_SMONGROUPING
:
467 case LOCALE_SMONTHOUSANDSEP
:
468 case LOCALE_SNATIVECURRNAME
:
469 default_id
= lcid_LC_MONETARY
;
473 case LOCALE_IDIGITSUBSTITUTION
:
475 case LOCALE_INEGNUMBER
:
476 case LOCALE_SDECIMAL
:
477 case LOCALE_SGROUPING
:
479 case LOCALE_SNATIVEDIGITS
:
480 case LOCALE_SNEGATIVESIGN
:
481 case LOCALE_SNEGINFINITY
:
482 case LOCALE_SPOSINFINITY
:
483 case LOCALE_SPOSITIVESIGN
:
484 case LOCALE_STHOUSAND
:
485 default_id
= lcid_LC_NUMERIC
;
488 case LOCALE_ICALENDARTYPE
:
489 case LOCALE_ICENTURY
:
491 case LOCALE_IDAYLZERO
:
492 case LOCALE_IFIRSTDAYOFWEEK
:
493 case LOCALE_IFIRSTWEEKOFYEAR
:
495 case LOCALE_IMONLZERO
:
496 case LOCALE_IOPTIONALCALENDAR
:
498 case LOCALE_ITIMEMARKPOSN
:
502 case LOCALE_SABBREVDAYNAME1
:
503 case LOCALE_SABBREVDAYNAME2
:
504 case LOCALE_SABBREVDAYNAME3
:
505 case LOCALE_SABBREVDAYNAME4
:
506 case LOCALE_SABBREVDAYNAME5
:
507 case LOCALE_SABBREVDAYNAME6
:
508 case LOCALE_SABBREVDAYNAME7
:
509 case LOCALE_SABBREVMONTHNAME1
:
510 case LOCALE_SABBREVMONTHNAME2
:
511 case LOCALE_SABBREVMONTHNAME3
:
512 case LOCALE_SABBREVMONTHNAME4
:
513 case LOCALE_SABBREVMONTHNAME5
:
514 case LOCALE_SABBREVMONTHNAME6
:
515 case LOCALE_SABBREVMONTHNAME7
:
516 case LOCALE_SABBREVMONTHNAME8
:
517 case LOCALE_SABBREVMONTHNAME9
:
518 case LOCALE_SABBREVMONTHNAME10
:
519 case LOCALE_SABBREVMONTHNAME11
:
520 case LOCALE_SABBREVMONTHNAME12
:
521 case LOCALE_SABBREVMONTHNAME13
:
523 case LOCALE_SDAYNAME1
:
524 case LOCALE_SDAYNAME2
:
525 case LOCALE_SDAYNAME3
:
526 case LOCALE_SDAYNAME4
:
527 case LOCALE_SDAYNAME5
:
528 case LOCALE_SDAYNAME6
:
529 case LOCALE_SDAYNAME7
:
530 case LOCALE_SDURATION
:
531 case LOCALE_SLONGDATE
:
532 case LOCALE_SMONTHNAME1
:
533 case LOCALE_SMONTHNAME2
:
534 case LOCALE_SMONTHNAME3
:
535 case LOCALE_SMONTHNAME4
:
536 case LOCALE_SMONTHNAME5
:
537 case LOCALE_SMONTHNAME6
:
538 case LOCALE_SMONTHNAME7
:
539 case LOCALE_SMONTHNAME8
:
540 case LOCALE_SMONTHNAME9
:
541 case LOCALE_SMONTHNAME10
:
542 case LOCALE_SMONTHNAME11
:
543 case LOCALE_SMONTHNAME12
:
544 case LOCALE_SMONTHNAME13
:
545 case LOCALE_SSHORTDATE
:
546 case LOCALE_SSHORTESTDAYNAME1
:
547 case LOCALE_SSHORTESTDAYNAME2
:
548 case LOCALE_SSHORTESTDAYNAME3
:
549 case LOCALE_SSHORTESTDAYNAME4
:
550 case LOCALE_SSHORTESTDAYNAME5
:
551 case LOCALE_SSHORTESTDAYNAME6
:
552 case LOCALE_SSHORTESTDAYNAME7
:
554 case LOCALE_STIMEFORMAT
:
555 case LOCALE_SYEARMONTH
:
556 default_id
= lcid_LC_TIME
;
559 case LOCALE_IPAPERSIZE
:
560 default_id
= lcid_LC_PAPER
;
563 case LOCALE_IMEASURE
:
564 default_id
= lcid_LC_MEASUREMENT
;
567 case LOCALE_ICOUNTRY
:
568 default_id
= lcid_LC_TELEPHONE
;
571 if (default_id
) lcid
= default_id
;
573 return ConvertDefaultLocale( lcid
);
576 /***********************************************************************
577 * is_genitive_name_supported
579 * Determine could LCTYPE basically support genitive name form or not.
581 static BOOL
is_genitive_name_supported( LCTYPE lctype
)
583 switch(lctype
& 0xffff)
585 case LOCALE_SMONTHNAME1
:
586 case LOCALE_SMONTHNAME2
:
587 case LOCALE_SMONTHNAME3
:
588 case LOCALE_SMONTHNAME4
:
589 case LOCALE_SMONTHNAME5
:
590 case LOCALE_SMONTHNAME6
:
591 case LOCALE_SMONTHNAME7
:
592 case LOCALE_SMONTHNAME8
:
593 case LOCALE_SMONTHNAME9
:
594 case LOCALE_SMONTHNAME10
:
595 case LOCALE_SMONTHNAME11
:
596 case LOCALE_SMONTHNAME12
:
597 case LOCALE_SMONTHNAME13
:
604 /***********************************************************************
605 * create_registry_key
607 * Create the Control Panel\\International registry key.
609 static inline HANDLE
create_registry_key(void)
611 static const WCHAR cplW
[] = {'C','o','n','t','r','o','l',' ','P','a','n','e','l',0};
612 static const WCHAR intlW
[] = {'I','n','t','e','r','n','a','t','i','o','n','a','l',0};
613 OBJECT_ATTRIBUTES attr
;
614 UNICODE_STRING nameW
;
615 HANDLE cpl_key
, hkey
= 0;
617 if (RtlOpenCurrentUser( KEY_ALL_ACCESS
, &hkey
) != STATUS_SUCCESS
) return 0;
619 attr
.Length
= sizeof(attr
);
620 attr
.RootDirectory
= hkey
;
621 attr
.ObjectName
= &nameW
;
623 attr
.SecurityDescriptor
= NULL
;
624 attr
.SecurityQualityOfService
= NULL
;
625 RtlInitUnicodeString( &nameW
, cplW
);
627 if (!NtCreateKey( &cpl_key
, KEY_ALL_ACCESS
, &attr
, 0, NULL
, 0, NULL
))
629 NtClose( attr
.RootDirectory
);
630 attr
.RootDirectory
= cpl_key
;
631 RtlInitUnicodeString( &nameW
, intlW
);
632 if (NtCreateKey( &hkey
, KEY_ALL_ACCESS
, &attr
, 0, NULL
, 0, NULL
)) hkey
= 0;
634 NtClose( attr
.RootDirectory
);
639 /* update the registry settings for a given locale parameter */
640 /* return TRUE if an update was needed */
641 static BOOL
locale_update_registry( HKEY hkey
, const WCHAR
*name
, LCID lcid
,
642 const LCTYPE
*values
, UINT nb_values
)
644 static const WCHAR formatW
[] = { '%','0','8','x',0 };
646 UNICODE_STRING nameW
;
649 RtlInitUnicodeString( &nameW
, name
);
650 count
= sizeof(bufferW
);
651 if (!NtQueryValueKey(hkey
, &nameW
, KeyValuePartialInformation
, bufferW
, count
, &count
))
653 const KEY_VALUE_PARTIAL_INFORMATION
*info
= (KEY_VALUE_PARTIAL_INFORMATION
*)bufferW
;
654 LPCWSTR text
= (LPCWSTR
)info
->Data
;
656 if (strtoulW( text
, NULL
, 16 ) == lcid
) return FALSE
; /* already set correctly */
657 TRACE( "updating registry, locale %s changed %s -> %08x\n",
658 debugstr_w(name
), debugstr_w(text
), lcid
);
660 else TRACE( "updating registry, locale %s changed none -> %08x\n", debugstr_w(name
), lcid
);
661 sprintfW( bufferW
, formatW
, lcid
);
662 NtSetValueKey( hkey
, &nameW
, 0, REG_SZ
, bufferW
, (strlenW(bufferW
) + 1) * sizeof(WCHAR
) );
664 for (i
= 0; i
< nb_values
; i
++)
666 GetLocaleInfoW( lcid
, values
[i
] | LOCALE_NOUSEROVERRIDE
, bufferW
,
667 sizeof(bufferW
)/sizeof(WCHAR
) );
668 SetLocaleInfoW( lcid
, values
[i
], bufferW
);
674 /***********************************************************************
675 * LOCALE_InitRegistry
677 * Update registry contents on startup if the user locale has changed.
678 * This simulates the action of the Windows control panel.
680 void LOCALE_InitRegistry(void)
682 static const WCHAR acpW
[] = {'A','C','P',0};
683 static const WCHAR oemcpW
[] = {'O','E','M','C','P',0};
684 static const WCHAR maccpW
[] = {'M','A','C','C','P',0};
685 static const WCHAR localeW
[] = {'L','o','c','a','l','e',0};
686 static const WCHAR lc_ctypeW
[] = { 'L','C','_','C','T','Y','P','E',0 };
687 static const WCHAR lc_monetaryW
[] = { 'L','C','_','M','O','N','E','T','A','R','Y',0 };
688 static const WCHAR lc_numericW
[] = { 'L','C','_','N','U','M','E','R','I','C',0 };
689 static const WCHAR lc_timeW
[] = { 'L','C','_','T','I','M','E',0 };
690 static const WCHAR lc_measurementW
[] = { 'L','C','_','M','E','A','S','U','R','E','M','E','N','T',0 };
691 static const WCHAR lc_telephoneW
[] = { 'L','C','_','T','E','L','E','P','H','O','N','E',0 };
692 static const WCHAR lc_paperW
[] = { 'L','C','_','P','A','P','E','R',0};
697 } update_cp_values
[] = {
698 { acpW
, LOCALE_IDEFAULTANSICODEPAGE
},
699 { oemcpW
, LOCALE_IDEFAULTCODEPAGE
},
700 { maccpW
, LOCALE_IDEFAULTMACCODEPAGE
}
702 static const LCTYPE lc_messages_values
[] = {
703 LOCALE_SABBREVLANGNAME
,
706 static const LCTYPE lc_monetary_values
[] = {
712 LOCALE_SMONDECIMALSEP
,
714 LOCALE_SMONTHOUSANDSEP
};
715 static const LCTYPE lc_numeric_values
[] = {
719 LOCALE_IDIGITSUBSTITUTION
,
720 LOCALE_SNATIVEDIGITS
,
722 LOCALE_SNEGATIVESIGN
,
723 LOCALE_SPOSITIVESIGN
,
725 static const LCTYPE lc_time_values
[] = {
734 LOCALE_ITIMEMARKPOSN
,
735 LOCALE_ICALENDARTYPE
,
736 LOCALE_IFIRSTDAYOFWEEK
,
737 LOCALE_IFIRSTWEEKOFYEAR
,
741 static const LCTYPE lc_measurement_values
[] = { LOCALE_IMEASURE
};
742 static const LCTYPE lc_telephone_values
[] = { LOCALE_ICOUNTRY
};
743 static const LCTYPE lc_paper_values
[] = { LOCALE_IPAPERSIZE
};
745 UNICODE_STRING nameW
;
749 LCID lcid
= GetUserDefaultLCID();
751 if (!(hkey
= create_registry_key()))
752 return; /* don't do anything if we can't create the registry key */
754 locale_update_registry( hkey
, localeW
, lcid_LC_MESSAGES
, lc_messages_values
,
755 sizeof(lc_messages_values
)/sizeof(lc_messages_values
[0]) );
756 locale_update_registry( hkey
, lc_monetaryW
, lcid_LC_MONETARY
, lc_monetary_values
,
757 sizeof(lc_monetary_values
)/sizeof(lc_monetary_values
[0]) );
758 locale_update_registry( hkey
, lc_numericW
, lcid_LC_NUMERIC
, lc_numeric_values
,
759 sizeof(lc_numeric_values
)/sizeof(lc_numeric_values
[0]) );
760 locale_update_registry( hkey
, lc_timeW
, lcid_LC_TIME
, lc_time_values
,
761 sizeof(lc_time_values
)/sizeof(lc_time_values
[0]) );
762 locale_update_registry( hkey
, lc_measurementW
, lcid_LC_MEASUREMENT
, lc_measurement_values
,
763 sizeof(lc_measurement_values
)/sizeof(lc_measurement_values
[0]) );
764 locale_update_registry( hkey
, lc_telephoneW
, lcid_LC_TELEPHONE
, lc_telephone_values
,
765 sizeof(lc_telephone_values
)/sizeof(lc_telephone_values
[0]) );
766 locale_update_registry( hkey
, lc_paperW
, lcid_LC_PAPER
, lc_paper_values
,
767 sizeof(lc_paper_values
)/sizeof(lc_paper_values
[0]) );
769 if (locale_update_registry( hkey
, lc_ctypeW
, lcid_LC_CTYPE
, NULL
, 0 ))
771 static const WCHAR codepageW
[] =
772 {'M','a','c','h','i','n','e','\\','S','y','s','t','e','m','\\',
773 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
774 'C','o','n','t','r','o','l','\\','N','l','s','\\','C','o','d','e','p','a','g','e',0};
776 OBJECT_ATTRIBUTES attr
;
780 RtlInitUnicodeString( &nameW
, codepageW
);
781 InitializeObjectAttributes( &attr
, &nameW
, 0, 0, NULL
);
782 while (codepageW
[len
])
784 nameW
.Length
= len
* sizeof(WCHAR
);
785 if (NtCreateKey( &nls_key
, KEY_ALL_ACCESS
, &attr
, 0, NULL
, 0, NULL
)) break;
788 while (codepageW
[len
] && codepageW
[len
] != '\\') len
++;
790 nameW
.Length
= len
* sizeof(WCHAR
);
791 if (!NtCreateKey( &nls_key
, KEY_ALL_ACCESS
, &attr
, 0, NULL
, 0, NULL
))
793 for (i
= 0; i
< sizeof(update_cp_values
)/sizeof(update_cp_values
[0]); i
++)
795 count
= GetLocaleInfoW( lcid
, update_cp_values
[i
].value
| LOCALE_NOUSEROVERRIDE
,
796 bufferW
, sizeof(bufferW
)/sizeof(WCHAR
) );
797 RtlInitUnicodeString( &nameW
, update_cp_values
[i
].name
);
798 NtSetValueKey( nls_key
, &nameW
, 0, REG_SZ
, bufferW
, count
* sizeof(WCHAR
) );
808 /***********************************************************************
811 static UINT
setup_unix_locales(void)
813 struct locale_name locale_name
;
814 WCHAR buffer
[128], ctype_buff
[128];
818 if ((locale
= setlocale( LC_CTYPE
, NULL
)))
820 strcpynAtoW( ctype_buff
, locale
, sizeof(ctype_buff
)/sizeof(WCHAR
) );
821 parse_locale_name( ctype_buff
, &locale_name
);
822 lcid_LC_CTYPE
= locale_name
.lcid
;
823 unix_cp
= locale_name
.codepage
;
825 if (!lcid_LC_CTYPE
) /* this one needs a default value */
826 lcid_LC_CTYPE
= MAKELCID( MAKELANGID(LANG_ENGLISH
,SUBLANG_DEFAULT
), SORT_DEFAULT
);
828 TRACE( "got lcid %04x (%d matches) for LC_CTYPE=%s\n",
829 locale_name
.lcid
, locale_name
.matches
, debugstr_a(locale
) );
831 #define GET_UNIX_LOCALE(cat) do \
832 if ((locale = setlocale( cat, NULL ))) \
834 strcpynAtoW( buffer, locale, sizeof(buffer)/sizeof(WCHAR) ); \
835 if (!strcmpW( buffer, ctype_buff )) lcid_##cat = lcid_LC_CTYPE; \
837 parse_locale_name( buffer, &locale_name ); \
838 lcid_##cat = locale_name.lcid; \
839 TRACE( "got lcid %04x (%d matches) for " #cat "=%s\n", \
840 locale_name.lcid, locale_name.matches, debugstr_a(locale) ); \
844 GET_UNIX_LOCALE( LC_COLLATE
);
845 GET_UNIX_LOCALE( LC_MESSAGES
);
846 GET_UNIX_LOCALE( LC_MONETARY
);
847 GET_UNIX_LOCALE( LC_NUMERIC
);
848 GET_UNIX_LOCALE( LC_TIME
);
850 GET_UNIX_LOCALE( LC_PAPER
);
852 #ifdef LC_MEASUREMENT
853 GET_UNIX_LOCALE( LC_MEASUREMENT
);
856 GET_UNIX_LOCALE( LC_TELEPHONE
);
859 #undef GET_UNIX_LOCALE
865 /***********************************************************************
866 * GetUserDefaultLangID (KERNEL32.@)
868 * Get the default language Id for the current user.
874 * The current LANGID of the default language for the current user.
876 LANGID WINAPI
GetUserDefaultLangID(void)
878 return LANGIDFROMLCID(GetUserDefaultLCID());
882 /***********************************************************************
883 * GetSystemDefaultLangID (KERNEL32.@)
885 * Get the default language Id for the system.
891 * The current LANGID of the default language for the system.
893 LANGID WINAPI
GetSystemDefaultLangID(void)
895 return LANGIDFROMLCID(GetSystemDefaultLCID());
899 /***********************************************************************
900 * GetUserDefaultLCID (KERNEL32.@)
902 * Get the default locale Id for the current user.
908 * The current LCID of the default locale for the current user.
910 LCID WINAPI
GetUserDefaultLCID(void)
913 NtQueryDefaultLocale( TRUE
, &lcid
);
918 /***********************************************************************
919 * GetSystemDefaultLCID (KERNEL32.@)
921 * Get the default locale Id for the system.
927 * The current LCID of the default locale for the system.
929 LCID WINAPI
GetSystemDefaultLCID(void)
932 NtQueryDefaultLocale( FALSE
, &lcid
);
937 /***********************************************************************
938 * GetUserDefaultUILanguage (KERNEL32.@)
940 * Get the default user interface language Id for the current user.
946 * The current LANGID of the default UI language for the current user.
948 LANGID WINAPI
GetUserDefaultUILanguage(void)
951 NtQueryDefaultUILanguage( &lang
);
956 /***********************************************************************
957 * GetSystemDefaultUILanguage (KERNEL32.@)
959 * Get the default user interface language Id for the system.
965 * The current LANGID of the default UI language for the system. This is
966 * typically the same language used during the installation process.
968 LANGID WINAPI
GetSystemDefaultUILanguage(void)
971 NtQueryInstallUILanguage( &lang
);
976 /***********************************************************************
977 * LocaleNameToLCID (KERNEL32.@)
979 LCID WINAPI
LocaleNameToLCID( LPCWSTR name
, DWORD flags
)
981 struct locale_name locale_name
;
983 if (flags
) FIXME( "unsupported flags %x\n", flags
);
985 parse_locale_name( name
, &locale_name
);
987 TRACE( "found lcid %x for %s, matches %d\n",
988 locale_name
.lcid
, debugstr_w(name
), locale_name
.matches
);
990 if (!locale_name
.matches
)
991 WARN( "locale %s not recognized, defaulting to English\n", debugstr_w(name
) );
992 else if (locale_name
.matches
== 1)
993 WARN( "locale %s not recognized, defaulting to %s\n",
994 debugstr_w(name
), debugstr_w(locale_name
.lang
) );
996 return locale_name
.lcid
;
1000 /***********************************************************************
1001 * LCIDToLocaleName (KERNEL32.@)
1003 INT WINAPI
LCIDToLocaleName( LCID lcid
, LPWSTR name
, INT count
, DWORD flags
)
1005 if (flags
) FIXME( "unsupported flags %x\n", flags
);
1007 return GetLocaleInfoW( lcid
, LOCALE_SNAME
| LOCALE_NOUSEROVERRIDE
, name
, count
);
1011 /******************************************************************************
1012 * get_locale_value_name
1014 * Gets the registry value name for a given lctype.
1016 static const WCHAR
*get_locale_value_name( DWORD lctype
)
1018 static const WCHAR iCalendarTypeW
[] = {'i','C','a','l','e','n','d','a','r','T','y','p','e',0};
1019 static const WCHAR iCountryW
[] = {'i','C','o','u','n','t','r','y',0};
1020 static const WCHAR iCurrDigitsW
[] = {'i','C','u','r','r','D','i','g','i','t','s',0};
1021 static const WCHAR iCurrencyW
[] = {'i','C','u','r','r','e','n','c','y',0};
1022 static const WCHAR iDateW
[] = {'i','D','a','t','e',0};
1023 static const WCHAR iDigitsW
[] = {'i','D','i','g','i','t','s',0};
1024 static const WCHAR iFirstDayOfWeekW
[] = {'i','F','i','r','s','t','D','a','y','O','f','W','e','e','k',0};
1025 static const WCHAR iFirstWeekOfYearW
[] = {'i','F','i','r','s','t','W','e','e','k','O','f','Y','e','a','r',0};
1026 static const WCHAR iLDateW
[] = {'i','L','D','a','t','e',0};
1027 static const WCHAR iLZeroW
[] = {'i','L','Z','e','r','o',0};
1028 static const WCHAR iMeasureW
[] = {'i','M','e','a','s','u','r','e',0};
1029 static const WCHAR iNegCurrW
[] = {'i','N','e','g','C','u','r','r',0};
1030 static const WCHAR iNegNumberW
[] = {'i','N','e','g','N','u','m','b','e','r',0};
1031 static const WCHAR iPaperSizeW
[] = {'i','P','a','p','e','r','S','i','z','e',0};
1032 static const WCHAR iTLZeroW
[] = {'i','T','L','Z','e','r','o',0};
1033 static const WCHAR iTimePrefixW
[] = {'i','T','i','m','e','P','r','e','f','i','x',0};
1034 static const WCHAR iTimeW
[] = {'i','T','i','m','e',0};
1035 static const WCHAR s1159W
[] = {'s','1','1','5','9',0};
1036 static const WCHAR s2359W
[] = {'s','2','3','5','9',0};
1037 static const WCHAR sCountryW
[] = {'s','C','o','u','n','t','r','y',0};
1038 static const WCHAR sCurrencyW
[] = {'s','C','u','r','r','e','n','c','y',0};
1039 static const WCHAR sDateW
[] = {'s','D','a','t','e',0};
1040 static const WCHAR sDecimalW
[] = {'s','D','e','c','i','m','a','l',0};
1041 static const WCHAR sGroupingW
[] = {'s','G','r','o','u','p','i','n','g',0};
1042 static const WCHAR sLanguageW
[] = {'s','L','a','n','g','u','a','g','e',0};
1043 static const WCHAR sListW
[] = {'s','L','i','s','t',0};
1044 static const WCHAR sLongDateW
[] = {'s','L','o','n','g','D','a','t','e',0};
1045 static const WCHAR sMonDecimalSepW
[] = {'s','M','o','n','D','e','c','i','m','a','l','S','e','p',0};
1046 static const WCHAR sMonGroupingW
[] = {'s','M','o','n','G','r','o','u','p','i','n','g',0};
1047 static const WCHAR sMonThousandSepW
[] = {'s','M','o','n','T','h','o','u','s','a','n','d','S','e','p',0};
1048 static const WCHAR sNativeDigitsW
[] = {'s','N','a','t','i','v','e','D','i','g','i','t','s',0};
1049 static const WCHAR sNegativeSignW
[] = {'s','N','e','g','a','t','i','v','e','S','i','g','n',0};
1050 static const WCHAR sPositiveSignW
[] = {'s','P','o','s','i','t','i','v','e','S','i','g','n',0};
1051 static const WCHAR sShortDateW
[] = {'s','S','h','o','r','t','D','a','t','e',0};
1052 static const WCHAR sThousandW
[] = {'s','T','h','o','u','s','a','n','d',0};
1053 static const WCHAR sTimeFormatW
[] = {'s','T','i','m','e','F','o','r','m','a','t',0};
1054 static const WCHAR sTimeW
[] = {'s','T','i','m','e',0};
1055 static const WCHAR sYearMonthW
[] = {'s','Y','e','a','r','M','o','n','t','h',0};
1056 static const WCHAR NumShapeW
[] = {'N','u','m','s','h','a','p','e',0};
1060 /* These values are used by SetLocaleInfo and GetLocaleInfo, and
1061 * the values are stored in the registry, confirmed under Windows.
1063 case LOCALE_ICALENDARTYPE
: return iCalendarTypeW
;
1064 case LOCALE_ICURRDIGITS
: return iCurrDigitsW
;
1065 case LOCALE_ICURRENCY
: return iCurrencyW
;
1066 case LOCALE_IDIGITS
: return iDigitsW
;
1067 case LOCALE_IFIRSTDAYOFWEEK
: return iFirstDayOfWeekW
;
1068 case LOCALE_IFIRSTWEEKOFYEAR
: return iFirstWeekOfYearW
;
1069 case LOCALE_ILZERO
: return iLZeroW
;
1070 case LOCALE_IMEASURE
: return iMeasureW
;
1071 case LOCALE_INEGCURR
: return iNegCurrW
;
1072 case LOCALE_INEGNUMBER
: return iNegNumberW
;
1073 case LOCALE_IPAPERSIZE
: return iPaperSizeW
;
1074 case LOCALE_ITIME
: return iTimeW
;
1075 case LOCALE_S1159
: return s1159W
;
1076 case LOCALE_S2359
: return s2359W
;
1077 case LOCALE_SCURRENCY
: return sCurrencyW
;
1078 case LOCALE_SDATE
: return sDateW
;
1079 case LOCALE_SDECIMAL
: return sDecimalW
;
1080 case LOCALE_SGROUPING
: return sGroupingW
;
1081 case LOCALE_SLIST
: return sListW
;
1082 case LOCALE_SLONGDATE
: return sLongDateW
;
1083 case LOCALE_SMONDECIMALSEP
: return sMonDecimalSepW
;
1084 case LOCALE_SMONGROUPING
: return sMonGroupingW
;
1085 case LOCALE_SMONTHOUSANDSEP
: return sMonThousandSepW
;
1086 case LOCALE_SNEGATIVESIGN
: return sNegativeSignW
;
1087 case LOCALE_SPOSITIVESIGN
: return sPositiveSignW
;
1088 case LOCALE_SSHORTDATE
: return sShortDateW
;
1089 case LOCALE_STHOUSAND
: return sThousandW
;
1090 case LOCALE_STIME
: return sTimeW
;
1091 case LOCALE_STIMEFORMAT
: return sTimeFormatW
;
1092 case LOCALE_SYEARMONTH
: return sYearMonthW
;
1094 /* The following are not listed under MSDN as supported,
1095 * but seem to be used and also stored in the registry.
1097 case LOCALE_ICOUNTRY
: return iCountryW
;
1098 case LOCALE_IDATE
: return iDateW
;
1099 case LOCALE_ILDATE
: return iLDateW
;
1100 case LOCALE_ITLZERO
: return iTLZeroW
;
1101 case LOCALE_SCOUNTRY
: return sCountryW
;
1102 case LOCALE_SABBREVLANGNAME
: return sLanguageW
;
1104 /* The following are used in XP and later */
1105 case LOCALE_IDIGITSUBSTITUTION
: return NumShapeW
;
1106 case LOCALE_SNATIVEDIGITS
: return sNativeDigitsW
;
1107 case LOCALE_ITIMEMARKPOSN
: return iTimePrefixW
;
1113 /******************************************************************************
1114 * get_registry_locale_info
1116 * Retrieve user-modified locale info from the registry.
1117 * Return length, 0 on error, -1 if not found.
1119 static INT
get_registry_locale_info( LPCWSTR value
, LPWSTR buffer
, INT len
)
1125 UNICODE_STRING nameW
;
1126 KEY_VALUE_PARTIAL_INFORMATION
*info
;
1127 static const int info_size
= FIELD_OFFSET(KEY_VALUE_PARTIAL_INFORMATION
, Data
);
1129 if (!(hkey
= create_registry_key())) return -1;
1131 RtlInitUnicodeString( &nameW
, value
);
1132 size
= info_size
+ len
* sizeof(WCHAR
);
1134 if (!(info
= HeapAlloc( GetProcessHeap(), 0, size
)))
1137 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1141 status
= NtQueryValueKey( hkey
, &nameW
, KeyValuePartialInformation
, info
, size
, &size
);
1145 ret
= (size
- info_size
) / sizeof(WCHAR
);
1146 /* append terminating null if needed */
1147 if (!ret
|| ((WCHAR
*)info
->Data
)[ret
-1])
1149 if (ret
< len
|| !buffer
) ret
++;
1152 SetLastError( ERROR_INSUFFICIENT_BUFFER
);
1158 memcpy( buffer
, info
->Data
, (ret
-1) * sizeof(WCHAR
) );
1162 else if (status
== STATUS_BUFFER_OVERFLOW
&& !buffer
)
1164 ret
= (size
- info_size
) / sizeof(WCHAR
) + 1;
1166 else if (status
== STATUS_OBJECT_NAME_NOT_FOUND
)
1172 SetLastError( RtlNtStatusToDosError(status
) );
1176 HeapFree( GetProcessHeap(), 0, info
);
1181 /******************************************************************************
1182 * GetLocaleInfoA (KERNEL32.@)
1184 * Get information about an aspect of a locale.
1187 * lcid [I] LCID of the locale
1188 * lctype [I] LCTYPE_ flags from "winnls.h"
1189 * buffer [O] Destination for the information
1190 * len [I] Length of buffer in characters
1193 * Success: The size of the data requested. If buffer is non-NULL, it is filled
1194 * with the information.
1195 * Failure: 0. Use GetLastError() to determine the cause.
1198 * - LOCALE_NEUTRAL is equal to LOCALE_SYSTEM_DEFAULT
1199 * - The string returned is NUL terminated, except for LOCALE_FONTSIGNATURE,
1200 * which is a bit string.
1202 INT WINAPI
GetLocaleInfoA( LCID lcid
, LCTYPE lctype
, LPSTR buffer
, INT len
)
1207 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d)\n", lcid
, lctype
, buffer
, len
);
1209 if (len
< 0 || (len
&& !buffer
))
1211 SetLastError( ERROR_INVALID_PARAMETER
);
1214 if (lctype
& LOCALE_RETURN_GENITIVE_NAMES
)
1216 SetLastError( ERROR_INVALID_FLAGS
);
1220 if (!len
) buffer
= NULL
;
1222 if (!(lenW
= GetLocaleInfoW( lcid
, lctype
, NULL
, 0 ))) return 0;
1224 if (!(bufferW
= HeapAlloc( GetProcessHeap(), 0, lenW
* sizeof(WCHAR
) )))
1226 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1229 if ((ret
= GetLocaleInfoW( lcid
, lctype
, bufferW
, lenW
)))
1231 if ((lctype
& LOCALE_RETURN_NUMBER
) ||
1232 ((lctype
& ~LOCALE_LOCALEINFOFLAGSMASK
) == LOCALE_FONTSIGNATURE
))
1234 /* it's not an ASCII string, just bytes */
1235 ret
*= sizeof(WCHAR
);
1238 if (ret
<= len
) memcpy( buffer
, bufferW
, ret
);
1241 SetLastError( ERROR_INSUFFICIENT_BUFFER
);
1248 UINT codepage
= CP_ACP
;
1249 if (!(lctype
& LOCALE_USE_CP_ACP
)) codepage
= get_lcid_codepage( lcid
);
1250 ret
= WideCharToMultiByte( codepage
, 0, bufferW
, ret
, buffer
, len
, NULL
, NULL
);
1253 HeapFree( GetProcessHeap(), 0, bufferW
);
1258 /******************************************************************************
1259 * GetLocaleInfoW (KERNEL32.@)
1261 * See GetLocaleInfoA.
1263 INT WINAPI
GetLocaleInfoW( LCID lcid
, LCTYPE lctype
, LPWSTR buffer
, INT len
)
1273 if (len
< 0 || (len
&& !buffer
))
1275 SetLastError( ERROR_INVALID_PARAMETER
);
1278 if (lctype
& LOCALE_RETURN_GENITIVE_NAMES
&&
1279 !is_genitive_name_supported( lctype
))
1281 SetLastError( ERROR_INVALID_FLAGS
);
1285 if (!len
) buffer
= NULL
;
1287 lcid
= convert_default_lcid( lcid
, lctype
);
1289 lcflags
= lctype
& LOCALE_LOCALEINFOFLAGSMASK
;
1292 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d)\n", lcid
, lctype
, buffer
, len
);
1294 /* first check for overrides in the registry */
1296 if (!(lcflags
& LOCALE_NOUSEROVERRIDE
) &&
1297 lcid
== convert_default_lcid( LOCALE_USER_DEFAULT
, lctype
))
1299 const WCHAR
*value
= get_locale_value_name(lctype
);
1303 if (lcflags
& LOCALE_RETURN_NUMBER
)
1306 ret
= get_registry_locale_info( value
, tmp
, sizeof(tmp
)/sizeof(WCHAR
) );
1310 UINT number
= strtolW( tmp
, &end
, 10 );
1311 if (*end
) /* invalid number */
1313 SetLastError( ERROR_INVALID_FLAGS
);
1316 ret
= sizeof(UINT
)/sizeof(WCHAR
);
1317 if (!buffer
) return ret
;
1320 SetLastError( ERROR_INSUFFICIENT_BUFFER
);
1323 memcpy( buffer
, &number
, sizeof(number
) );
1326 else ret
= get_registry_locale_info( value
, buffer
, len
);
1328 if (ret
!= -1) return ret
;
1332 /* now load it from kernel resources */
1334 lang_id
= LANGIDFROMLCID( lcid
);
1336 /* replace SUBLANG_NEUTRAL by SUBLANG_DEFAULT */
1337 if (SUBLANGID(lang_id
) == SUBLANG_NEUTRAL
)
1338 lang_id
= MAKELANGID(PRIMARYLANGID(lang_id
), SUBLANG_DEFAULT
);
1340 if (!(hrsrc
= FindResourceExW( kernel32_handle
, (LPWSTR
)RT_STRING
,
1341 ULongToPtr((lctype
>> 4) + 1), lang_id
)))
1343 SetLastError( ERROR_INVALID_FLAGS
); /* no such lctype */
1346 if (!(hmem
= LoadResource( kernel32_handle
, hrsrc
)))
1349 p
= LockResource( hmem
);
1350 for (i
= 0; i
< (lctype
& 0x0f); i
++) p
+= *p
+ 1;
1352 if (lcflags
& LOCALE_RETURN_NUMBER
) ret
= sizeof(UINT
)/sizeof(WCHAR
);
1353 else if (is_genitive_name_supported( lctype
) && *p
)
1355 /* genitive form's stored after a null separator from a nominative */
1356 for (i
= 1; i
<= *p
; i
++) if (!p
[i
]) break;
1358 if (i
<= *p
&& (lcflags
& LOCALE_RETURN_GENITIVE_NAMES
))
1366 ret
= (lctype
== LOCALE_FONTSIGNATURE
) ? *p
: *p
+ 1;
1368 if (!buffer
) return ret
;
1372 SetLastError( ERROR_INSUFFICIENT_BUFFER
);
1376 if (lcflags
& LOCALE_RETURN_NUMBER
)
1379 WCHAR
*end
, *tmp
= HeapAlloc( GetProcessHeap(), 0, (*p
+ 1) * sizeof(WCHAR
) );
1381 memcpy( tmp
, p
+ 1, *p
* sizeof(WCHAR
) );
1383 number
= strtolW( tmp
, &end
, 10 );
1385 memcpy( buffer
, &number
, sizeof(number
) );
1386 else /* invalid number */
1388 SetLastError( ERROR_INVALID_FLAGS
);
1391 HeapFree( GetProcessHeap(), 0, tmp
);
1393 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d) returning number %d\n",
1394 lcid
, lctype
, buffer
, len
, number
);
1398 memcpy( buffer
, p
+ 1, ret
* sizeof(WCHAR
) );
1399 if (lctype
!= LOCALE_FONTSIGNATURE
) buffer
[ret
-1] = 0;
1401 TRACE( "(lcid=0x%x,lctype=0x%x,%p,%d) returning %d %s\n",
1402 lcid
, lctype
, buffer
, len
, ret
, debugstr_w(buffer
) );
1408 /******************************************************************************
1409 * SetLocaleInfoA [KERNEL32.@]
1411 * Set information about an aspect of a locale.
1414 * lcid [I] LCID of the locale
1415 * lctype [I] LCTYPE_ flags from "winnls.h"
1416 * data [I] Information to set
1419 * Success: TRUE. The information given will be returned by GetLocaleInfoA()
1420 * whenever it is called without LOCALE_NOUSEROVERRIDE.
1421 * Failure: FALSE. Use GetLastError() to determine the cause.
1424 * - Values are only be set for the current user locale; the system locale
1425 * settings cannot be changed.
1426 * - Any settings changed by this call are lost when the locale is changed by
1427 * the control panel (in Wine, this happens every time you change LANG).
1428 * - The native implementation of this function does not check that lcid matches
1429 * the current user locale, and simply sets the new values. Wine warns you in
1430 * this case, but behaves the same.
1432 BOOL WINAPI
SetLocaleInfoA(LCID lcid
, LCTYPE lctype
, LPCSTR data
)
1434 UINT codepage
= CP_ACP
;
1439 if (!(lctype
& LOCALE_USE_CP_ACP
)) codepage
= get_lcid_codepage( lcid
);
1443 SetLastError( ERROR_INVALID_PARAMETER
);
1446 len
= MultiByteToWideChar( codepage
, 0, data
, -1, NULL
, 0 );
1447 if (!(strW
= HeapAlloc( GetProcessHeap(), 0, len
* sizeof(WCHAR
) )))
1449 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
1452 MultiByteToWideChar( codepage
, 0, data
, -1, strW
, len
);
1453 ret
= SetLocaleInfoW( lcid
, lctype
, strW
);
1454 HeapFree( GetProcessHeap(), 0, strW
);
1459 /******************************************************************************
1460 * SetLocaleInfoW (KERNEL32.@)
1462 * See SetLocaleInfoA.
1464 BOOL WINAPI
SetLocaleInfoW( LCID lcid
, LCTYPE lctype
, LPCWSTR data
)
1467 static const WCHAR intlW
[] = {'i','n','t','l',0 };
1468 UNICODE_STRING valueW
;
1473 value
= get_locale_value_name( lctype
);
1475 if (!data
|| !value
)
1477 SetLastError( ERROR_INVALID_PARAMETER
);
1481 if (lctype
== LOCALE_IDATE
|| lctype
== LOCALE_ILDATE
)
1483 SetLastError( ERROR_INVALID_FLAGS
);
1487 TRACE("setting %x (%s) to %s\n", lctype
, debugstr_w(value
), debugstr_w(data
) );
1489 /* FIXME: should check that data to set is sane */
1491 /* FIXME: profile functions should map to registry */
1492 WriteProfileStringW( intlW
, value
, data
);
1494 if (!(hkey
= create_registry_key())) return FALSE
;
1495 RtlInitUnicodeString( &valueW
, value
);
1496 status
= NtSetValueKey( hkey
, &valueW
, 0, REG_SZ
, data
, (strlenW(data
)+1)*sizeof(WCHAR
) );
1498 if (lctype
== LOCALE_SSHORTDATE
|| lctype
== LOCALE_SLONGDATE
)
1500 /* Set I-value from S value */
1501 WCHAR
*lpD
, *lpM
, *lpY
;
1504 lpD
= strrchrW(data
, 'd');
1505 lpM
= strrchrW(data
, 'M');
1506 lpY
= strrchrW(data
, 'y');
1510 szBuff
[0] = '1'; /* D-M-Y */
1515 szBuff
[0] = '2'; /* Y-M-D */
1517 szBuff
[0] = '0'; /* M-D-Y */
1522 if (lctype
== LOCALE_SSHORTDATE
)
1523 lctype
= LOCALE_IDATE
;
1525 lctype
= LOCALE_ILDATE
;
1527 value
= get_locale_value_name( lctype
);
1529 WriteProfileStringW( intlW
, value
, szBuff
);
1531 RtlInitUnicodeString( &valueW
, value
);
1532 status
= NtSetValueKey( hkey
, &valueW
, 0, REG_SZ
, szBuff
, sizeof(szBuff
) );
1537 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
1542 /******************************************************************************
1543 * GetACP (KERNEL32.@)
1545 * Get the current Ansi code page Id for the system.
1551 * The current Ansi code page identifier for the system.
1553 UINT WINAPI
GetACP(void)
1555 assert( ansi_cptable
);
1556 return ansi_cptable
->info
.codepage
;
1560 /******************************************************************************
1561 * SetCPGlobal (KERNEL32.@)
1563 * Set the current Ansi code page Id for the system.
1566 * acp [I] code page ID to be the new ACP.
1571 UINT WINAPI
SetCPGlobal( UINT acp
)
1573 UINT ret
= GetACP();
1574 const union cptable
*new_cptable
= wine_cp_get_table( acp
);
1576 if (new_cptable
) ansi_cptable
= new_cptable
;
1581 /***********************************************************************
1582 * GetOEMCP (KERNEL32.@)
1584 * Get the current OEM code page Id for the system.
1590 * The current OEM code page identifier for the system.
1592 UINT WINAPI
GetOEMCP(void)
1594 assert( oem_cptable
);
1595 return oem_cptable
->info
.codepage
;
1599 /***********************************************************************
1600 * IsValidCodePage (KERNEL32.@)
1602 * Determine if a given code page identifier is valid.
1605 * codepage [I] Code page Id to verify.
1608 * TRUE, If codepage is valid and available on the system,
1611 BOOL WINAPI
IsValidCodePage( UINT codepage
)
1618 return wine_cp_get_table( codepage
) != NULL
;
1623 /***********************************************************************
1624 * IsDBCSLeadByteEx (KERNEL32.@)
1626 * Determine if a character is a lead byte in a given code page.
1629 * codepage [I] Code page for the test.
1630 * testchar [I] Character to test
1633 * TRUE, if testchar is a lead byte in codepage,
1636 BOOL WINAPI
IsDBCSLeadByteEx( UINT codepage
, BYTE testchar
)
1638 const union cptable
*table
= get_codepage_table( codepage
);
1639 return table
&& wine_is_dbcs_leadbyte( table
, testchar
);
1643 /***********************************************************************
1644 * IsDBCSLeadByte (KERNEL32.@)
1645 * IsDBCSLeadByte (KERNEL.207)
1647 * Determine if a character is a lead byte.
1650 * testchar [I] Character to test
1653 * TRUE, if testchar is a lead byte in the Ansii code page,
1656 BOOL WINAPI
IsDBCSLeadByte( BYTE testchar
)
1658 if (!ansi_cptable
) return FALSE
;
1659 return wine_is_dbcs_leadbyte( ansi_cptable
, testchar
);
1663 /***********************************************************************
1664 * GetCPInfo (KERNEL32.@)
1666 * Get information about a code page.
1669 * codepage [I] Code page number
1670 * cpinfo [O] Destination for code page information
1673 * Success: TRUE. cpinfo is updated with the information about codepage.
1674 * Failure: FALSE, if codepage is invalid or cpinfo is NULL.
1676 BOOL WINAPI
GetCPInfo( UINT codepage
, LPCPINFO cpinfo
)
1678 const union cptable
*table
;
1682 SetLastError( ERROR_INVALID_PARAMETER
);
1686 if (!(table
= get_codepage_table( codepage
)))
1692 cpinfo
->DefaultChar
[0] = 0x3f;
1693 cpinfo
->DefaultChar
[1] = 0;
1694 cpinfo
->LeadByte
[0] = cpinfo
->LeadByte
[1] = 0;
1695 cpinfo
->MaxCharSize
= (codepage
== CP_UTF7
) ? 5 : 4;
1699 SetLastError( ERROR_INVALID_PARAMETER
);
1702 if (table
->info
.def_char
& 0xff00)
1704 cpinfo
->DefaultChar
[0] = (table
->info
.def_char
& 0xff00) >> 8;
1705 cpinfo
->DefaultChar
[1] = table
->info
.def_char
& 0x00ff;
1709 cpinfo
->DefaultChar
[0] = table
->info
.def_char
& 0xff;
1710 cpinfo
->DefaultChar
[1] = 0;
1712 if ((cpinfo
->MaxCharSize
= table
->info
.char_size
) == 2)
1713 memcpy( cpinfo
->LeadByte
, table
->dbcs
.lead_bytes
, sizeof(cpinfo
->LeadByte
) );
1715 cpinfo
->LeadByte
[0] = cpinfo
->LeadByte
[1] = 0;
1720 /***********************************************************************
1721 * GetCPInfoExA (KERNEL32.@)
1723 * Get extended information about a code page.
1726 * codepage [I] Code page number
1727 * dwFlags [I] Reserved, must to 0.
1728 * cpinfo [O] Destination for code page information
1731 * Success: TRUE. cpinfo is updated with the information about codepage.
1732 * Failure: FALSE, if codepage is invalid or cpinfo is NULL.
1734 BOOL WINAPI
GetCPInfoExA( UINT codepage
, DWORD dwFlags
, LPCPINFOEXA cpinfo
)
1738 if (!GetCPInfoExW( codepage
, dwFlags
, &cpinfoW
))
1741 /* the layout is the same except for CodePageName */
1742 memcpy(cpinfo
, &cpinfoW
, sizeof(CPINFOEXA
));
1743 WideCharToMultiByte(CP_ACP
, 0, cpinfoW
.CodePageName
, -1, cpinfo
->CodePageName
, sizeof(cpinfo
->CodePageName
), NULL
, NULL
);
1747 /***********************************************************************
1748 * GetCPInfoExW (KERNEL32.@)
1750 * Unicode version of GetCPInfoExA.
1752 BOOL WINAPI
GetCPInfoExW( UINT codepage
, DWORD dwFlags
, LPCPINFOEXW cpinfo
)
1754 if (!GetCPInfo( codepage
, (LPCPINFO
)cpinfo
))
1761 static const WCHAR utf7
[] = {'U','n','i','c','o','d','e',' ','(','U','T','F','-','7',')',0};
1763 cpinfo
->CodePage
= CP_UTF7
;
1764 cpinfo
->UnicodeDefaultChar
= 0x3f;
1765 strcpyW(cpinfo
->CodePageName
, utf7
);
1771 static const WCHAR utf8
[] = {'U','n','i','c','o','d','e',' ','(','U','T','F','-','8',')',0};
1773 cpinfo
->CodePage
= CP_UTF8
;
1774 cpinfo
->UnicodeDefaultChar
= 0x3f;
1775 strcpyW(cpinfo
->CodePageName
, utf8
);
1781 const union cptable
*table
= get_codepage_table( codepage
);
1783 cpinfo
->CodePage
= table
->info
.codepage
;
1784 cpinfo
->UnicodeDefaultChar
= table
->info
.def_unicode_char
;
1785 MultiByteToWideChar( CP_ACP
, 0, table
->info
.name
, -1, cpinfo
->CodePageName
,
1786 sizeof(cpinfo
->CodePageName
)/sizeof(WCHAR
));
1793 /***********************************************************************
1794 * EnumSystemCodePagesA (KERNEL32.@)
1796 * Call a user defined function for every code page installed on the system.
1799 * lpfnCodePageEnum [I] User CODEPAGE_ENUMPROC to call with each found code page
1800 * flags [I] Reserved, set to 0.
1803 * TRUE, If all code pages have been enumerated, or
1804 * FALSE if lpfnCodePageEnum returned FALSE to stop the enumeration.
1806 BOOL WINAPI
EnumSystemCodePagesA( CODEPAGE_ENUMPROCA lpfnCodePageEnum
, DWORD flags
)
1808 const union cptable
*table
;
1814 if (!(table
= wine_cp_enum_table( index
++ ))) break;
1815 sprintf( buffer
, "%d", table
->info
.codepage
);
1816 if (!lpfnCodePageEnum( buffer
)) break;
1822 /***********************************************************************
1823 * EnumSystemCodePagesW (KERNEL32.@)
1825 * See EnumSystemCodePagesA.
1827 BOOL WINAPI
EnumSystemCodePagesW( CODEPAGE_ENUMPROCW lpfnCodePageEnum
, DWORD flags
)
1829 const union cptable
*table
;
1830 WCHAR buffer
[10], *p
;
1831 int page
, index
= 0;
1835 if (!(table
= wine_cp_enum_table( index
++ ))) break;
1836 p
= buffer
+ sizeof(buffer
)/sizeof(WCHAR
);
1838 page
= table
->info
.codepage
;
1841 *--p
= '0' + (page
% 10);
1844 if (!lpfnCodePageEnum( p
)) break;
1850 /***********************************************************************
1851 * MultiByteToWideChar (KERNEL32.@)
1853 * Convert a multibyte character string into a Unicode string.
1856 * page [I] Codepage character set to convert from
1857 * flags [I] Character mapping flags
1858 * src [I] Source string buffer
1859 * srclen [I] Length of src (in bytes), or -1 if src is NUL terminated
1860 * dst [O] Destination buffer
1861 * dstlen [I] Length of dst (in WCHARs), or 0 to compute the required length
1864 * Success: If dstlen > 0, the number of characters written to dst.
1865 * If dstlen == 0, the number of characters needed to perform the
1866 * conversion. In both cases the count includes the terminating NUL.
1867 * Failure: 0. Use GetLastError() to determine the cause. Possible errors are
1868 * ERROR_INSUFFICIENT_BUFFER, if not enough space is available in dst
1869 * and dstlen != 0; ERROR_INVALID_PARAMETER, if an invalid parameter
1870 * is passed, and ERROR_NO_UNICODE_TRANSLATION if no translation is
1873 INT WINAPI
MultiByteToWideChar( UINT page
, DWORD flags
, LPCSTR src
, INT srclen
,
1874 LPWSTR dst
, INT dstlen
)
1876 const union cptable
*table
;
1879 if (!src
|| (!dst
&& dstlen
))
1881 SetLastError( ERROR_INVALID_PARAMETER
);
1885 if (srclen
< 0) srclen
= strlen(src
) + 1;
1892 SetLastError( ERROR_INVALID_PARAMETER
);
1895 ret
= wine_cpsymbol_mbstowcs( src
, srclen
, dst
, dstlen
);
1898 FIXME("UTF-7 not supported\n");
1899 SetLastError( ERROR_CALL_NOT_IMPLEMENTED
);
1904 ret
= wine_cp_mbstowcs( unix_cptable
, flags
, src
, srclen
, dst
, dstlen
);
1908 flags
|= MB_COMPOSITE
; /* work around broken Mac OS X filesystem that enforces decomposed Unicode */
1912 ret
= wine_utf8_mbstowcs( flags
, src
, srclen
, dst
, dstlen
);
1915 if (!(table
= get_codepage_table( page
)))
1917 SetLastError( ERROR_INVALID_PARAMETER
);
1920 ret
= wine_cp_mbstowcs( table
, flags
, src
, srclen
, dst
, dstlen
);
1928 case -1: SetLastError( ERROR_INSUFFICIENT_BUFFER
); break;
1929 case -2: SetLastError( ERROR_NO_UNICODE_TRANSLATION
); break;
1933 TRACE("cp %d %s -> %s, ret = %d\n",
1934 page
, debugstr_an(src
, srclen
), debugstr_wn(dst
, ret
), ret
);
1939 /***********************************************************************
1940 * WideCharToMultiByte (KERNEL32.@)
1942 * Convert a Unicode character string into a multibyte string.
1945 * page [I] Code page character set to convert to
1946 * flags [I] Mapping Flags (MB_ constants from "winnls.h").
1947 * src [I] Source string buffer
1948 * srclen [I] Length of src (in WCHARs), or -1 if src is NUL terminated
1949 * dst [O] Destination buffer
1950 * dstlen [I] Length of dst (in bytes), or 0 to compute the required length
1951 * defchar [I] Default character to use for conversion if no exact
1952 * conversion can be made
1953 * used [O] Set if default character was used in the conversion
1956 * Success: If dstlen > 0, the number of characters written to dst.
1957 * If dstlen == 0, number of characters needed to perform the
1958 * conversion. In both cases the count includes the terminating NUL.
1959 * Failure: 0. Use GetLastError() to determine the cause. Possible errors are
1960 * ERROR_INSUFFICIENT_BUFFER, if not enough space is available in dst
1961 * and dstlen != 0, and ERROR_INVALID_PARAMETER, if an invalid
1962 * parameter was given.
1964 INT WINAPI
WideCharToMultiByte( UINT page
, DWORD flags
, LPCWSTR src
, INT srclen
,
1965 LPSTR dst
, INT dstlen
, LPCSTR defchar
, BOOL
*used
)
1967 const union cptable
*table
;
1970 if (!src
|| (!dst
&& dstlen
))
1972 SetLastError( ERROR_INVALID_PARAMETER
);
1976 if (srclen
< 0) srclen
= strlenW(src
) + 1;
1981 if( flags
|| defchar
|| used
)
1983 SetLastError( ERROR_INVALID_PARAMETER
);
1986 ret
= wine_cpsymbol_wcstombs( src
, srclen
, dst
, dstlen
);
1989 FIXME("UTF-7 not supported\n");
1990 SetLastError( ERROR_CALL_NOT_IMPLEMENTED
);
1995 ret
= wine_cp_wcstombs( unix_cptable
, flags
, src
, srclen
, dst
, dstlen
,
1996 defchar
, used
? &used_tmp
: NULL
);
2001 if (used
) *used
= FALSE
; /* all chars are valid for UTF-8 */
2002 ret
= wine_utf8_wcstombs( flags
, src
, srclen
, dst
, dstlen
);
2005 if (!(table
= get_codepage_table( page
)))
2007 SetLastError( ERROR_INVALID_PARAMETER
);
2010 ret
= wine_cp_wcstombs( table
, flags
, src
, srclen
, dst
, dstlen
,
2011 defchar
, used
? &used_tmp
: NULL
);
2012 if (used
) *used
= used_tmp
;
2020 case -1: SetLastError( ERROR_INSUFFICIENT_BUFFER
); break;
2021 case -2: SetLastError( ERROR_NO_UNICODE_TRANSLATION
); break;
2025 TRACE("cp %d %s -> %s, ret = %d\n",
2026 page
, debugstr_wn(src
, srclen
), debugstr_an(dst
, ret
), ret
);
2031 /***********************************************************************
2032 * GetThreadLocale (KERNEL32.@)
2034 * Get the current threads locale.
2040 * The LCID currently associated with the calling thread.
2042 LCID WINAPI
GetThreadLocale(void)
2044 LCID ret
= NtCurrentTeb()->CurrentLocale
;
2045 if (!ret
) NtCurrentTeb()->CurrentLocale
= ret
= GetUserDefaultLCID();
2049 /**********************************************************************
2050 * SetThreadLocale (KERNEL32.@)
2052 * Set the current threads locale.
2055 * lcid [I] LCID of the locale to set
2058 * Success: TRUE. The threads locale is set to lcid.
2059 * Failure: FALSE. Use GetLastError() to determine the cause.
2061 BOOL WINAPI
SetThreadLocale( LCID lcid
)
2063 TRACE("(0x%04X)\n", lcid
);
2065 lcid
= ConvertDefaultLocale(lcid
);
2067 if (lcid
!= GetThreadLocale())
2069 if (!IsValidLocale(lcid
, LCID_SUPPORTED
))
2071 SetLastError(ERROR_INVALID_PARAMETER
);
2075 NtCurrentTeb()->CurrentLocale
= lcid
;
2080 /**********************************************************************
2081 * SetThreadUILanguage (KERNEL32.@)
2083 * Set the current threads UI language.
2086 * langid [I] LANGID of the language to set, or 0 to use
2087 * the available language which is best supported
2088 * for console applications
2091 * Success: The return value is the same as the input value.
2092 * Failure: The return value differs from the input value.
2093 * Use GetLastError() to determine the cause.
2095 LANGID WINAPI
SetThreadUILanguage( LANGID langid
)
2097 TRACE("(0x%04x) stub - returning success\n", langid
);
2101 /******************************************************************************
2102 * ConvertDefaultLocale (KERNEL32.@)
2104 * Convert a default locale identifier into a real identifier.
2107 * lcid [I] LCID identifier of the locale to convert
2110 * lcid unchanged, if not a default locale or its sublanguage is
2111 * not SUBLANG_NEUTRAL.
2112 * GetSystemDefaultLCID(), if lcid == LOCALE_SYSTEM_DEFAULT.
2113 * GetUserDefaultLCID(), if lcid == LOCALE_USER_DEFAULT or LOCALE_NEUTRAL.
2114 * Otherwise, lcid with sublanguage changed to SUBLANG_DEFAULT.
2116 LCID WINAPI
ConvertDefaultLocale( LCID lcid
)
2122 case LOCALE_SYSTEM_DEFAULT
:
2123 lcid
= GetSystemDefaultLCID();
2125 case LOCALE_USER_DEFAULT
:
2126 case LOCALE_NEUTRAL
:
2127 lcid
= GetUserDefaultLCID();
2130 /* Replace SUBLANG_NEUTRAL with SUBLANG_DEFAULT */
2131 langid
= LANGIDFROMLCID(lcid
);
2132 if (SUBLANGID(langid
) == SUBLANG_NEUTRAL
)
2134 langid
= MAKELANGID(PRIMARYLANGID(langid
), SUBLANG_DEFAULT
);
2135 lcid
= MAKELCID(langid
, SORTIDFROMLCID(lcid
));
2142 /******************************************************************************
2143 * IsValidLocale (KERNEL32.@)
2145 * Determine if a locale is valid.
2148 * lcid [I] LCID of the locale to check
2149 * flags [I] LCID_SUPPORTED = Valid, LCID_INSTALLED = Valid and installed on the system
2152 * TRUE, if lcid is valid,
2156 * Wine does not currently make the distinction between supported and installed. All
2157 * languages supported are installed by default.
2159 BOOL WINAPI
IsValidLocale( LCID lcid
, DWORD flags
)
2161 /* check if language is registered in the kernel32 resources */
2162 return FindResourceExW( kernel32_handle
, (LPWSTR
)RT_STRING
,
2163 (LPCWSTR
)LOCALE_ILANGUAGE
, LANGIDFROMLCID(lcid
)) != 0;
2167 static BOOL CALLBACK
enum_lang_proc_a( HMODULE hModule
, LPCSTR type
,
2168 LPCSTR name
, WORD LangID
, LONG_PTR lParam
)
2170 LOCALE_ENUMPROCA lpfnLocaleEnum
= (LOCALE_ENUMPROCA
)lParam
;
2173 sprintf(buf
, "%08x", (UINT
)LangID
);
2174 return lpfnLocaleEnum( buf
);
2177 static BOOL CALLBACK
enum_lang_proc_w( HMODULE hModule
, LPCWSTR type
,
2178 LPCWSTR name
, WORD LangID
, LONG_PTR lParam
)
2180 static const WCHAR formatW
[] = {'%','0','8','x',0};
2181 LOCALE_ENUMPROCW lpfnLocaleEnum
= (LOCALE_ENUMPROCW
)lParam
;
2183 sprintfW( buf
, formatW
, (UINT
)LangID
);
2184 return lpfnLocaleEnum( buf
);
2187 /******************************************************************************
2188 * EnumSystemLocalesA (KERNEL32.@)
2190 * Call a users function for each locale available on the system.
2193 * lpfnLocaleEnum [I] Callback function to call for each locale
2194 * dwFlags [I] LOCALE_SUPPORTED=All supported, LOCALE_INSTALLED=Installed only
2198 * Failure: FALSE. Use GetLastError() to determine the cause.
2200 BOOL WINAPI
EnumSystemLocalesA( LOCALE_ENUMPROCA lpfnLocaleEnum
, DWORD dwFlags
)
2202 TRACE("(%p,%08x)\n", lpfnLocaleEnum
, dwFlags
);
2203 EnumResourceLanguagesA( kernel32_handle
, (LPSTR
)RT_STRING
,
2204 (LPCSTR
)LOCALE_ILANGUAGE
, enum_lang_proc_a
,
2205 (LONG_PTR
)lpfnLocaleEnum
);
2210 /******************************************************************************
2211 * EnumSystemLocalesW (KERNEL32.@)
2213 * See EnumSystemLocalesA.
2215 BOOL WINAPI
EnumSystemLocalesW( LOCALE_ENUMPROCW lpfnLocaleEnum
, DWORD dwFlags
)
2217 TRACE("(%p,%08x)\n", lpfnLocaleEnum
, dwFlags
);
2218 EnumResourceLanguagesW( kernel32_handle
, (LPWSTR
)RT_STRING
,
2219 (LPCWSTR
)LOCALE_ILANGUAGE
, enum_lang_proc_w
,
2220 (LONG_PTR
)lpfnLocaleEnum
);
2225 /***********************************************************************
2226 * VerLanguageNameA (KERNEL32.@)
2228 * Get the name of a language.
2231 * wLang [I] LANGID of the language
2232 * szLang [O] Destination for the language name
2235 * Success: The size of the language name. If szLang is non-NULL, it is filled
2237 * Failure: 0. Use GetLastError() to determine the cause.
2240 DWORD WINAPI
VerLanguageNameA( DWORD wLang
, LPSTR szLang
, DWORD nSize
)
2242 return GetLocaleInfoA( MAKELCID(wLang
, SORT_DEFAULT
), LOCALE_SENGLANGUAGE
, szLang
, nSize
);
2246 /***********************************************************************
2247 * VerLanguageNameW (KERNEL32.@)
2249 * See VerLanguageNameA.
2251 DWORD WINAPI
VerLanguageNameW( DWORD wLang
, LPWSTR szLang
, DWORD nSize
)
2253 return GetLocaleInfoW( MAKELCID(wLang
, SORT_DEFAULT
), LOCALE_SENGLANGUAGE
, szLang
, nSize
);
2257 /******************************************************************************
2258 * GetStringTypeW (KERNEL32.@)
2260 * See GetStringTypeA.
2262 BOOL WINAPI
GetStringTypeW( DWORD type
, LPCWSTR src
, INT count
, LPWORD chartype
)
2264 if (count
== -1) count
= strlenW(src
) + 1;
2268 while (count
--) *chartype
++ = get_char_typeW( *src
++ ) & 0xfff;
2271 while (count
--) *chartype
++ = get_char_typeW( *src
++ ) >> 12;
2275 WARN("CT_CTYPE3: semi-stub.\n");
2279 WORD type1
, type3
= 0; /* C3_NOTAPPLICABLE */
2281 type1
= get_char_typeW( *src
++ ) & 0xfff;
2282 /* try to construct type3 from type1 */
2283 if(type1
& C1_SPACE
) type3
|= C3_SYMBOL
;
2284 if(type1
& C1_ALPHA
) type3
|= C3_ALPHA
;
2285 if ((c
>=0x30A0)&&(c
<=0x30FF)) type3
|= C3_KATAKANA
;
2286 if ((c
>=0x3040)&&(c
<=0x309F)) type3
|= C3_HIRAGANA
;
2287 if ((c
>=0x4E00)&&(c
<=0x9FAF)) type3
|= C3_IDEOGRAPH
;
2288 if ((c
>=0x0600)&&(c
<=0x06FF)) type3
|= C3_KASHIDA
;
2289 if ((c
>=0x3000)&&(c
<=0x303F)) type3
|= C3_SYMBOL
;
2291 if ((c
>=0xFF00)&&(c
<=0xFF60)) type3
|= C3_FULLWIDTH
;
2292 if ((c
>=0xFF00)&&(c
<=0xFF20)) type3
|= C3_SYMBOL
;
2293 if ((c
>=0xFF3B)&&(c
<=0xFF40)) type3
|= C3_SYMBOL
;
2294 if ((c
>=0xFF5B)&&(c
<=0xFF60)) type3
|= C3_SYMBOL
;
2295 if ((c
>=0xFF21)&&(c
<=0xFF3A)) type3
|= C3_ALPHA
;
2296 if ((c
>=0xFF41)&&(c
<=0xFF5A)) type3
|= C3_ALPHA
;
2297 if ((c
>=0xFFE0)&&(c
<=0xFFE6)) type3
|= C3_FULLWIDTH
;
2298 if ((c
>=0xFFE0)&&(c
<=0xFFE6)) type3
|= C3_SYMBOL
;
2300 if ((c
>=0xFF61)&&(c
<=0xFFDC)) type3
|= C3_HALFWIDTH
;
2301 if ((c
>=0xFF61)&&(c
<=0xFF64)) type3
|= C3_SYMBOL
;
2302 if ((c
>=0xFF65)&&(c
<=0xFF9F)) type3
|= C3_KATAKANA
;
2303 if ((c
>=0xFF65)&&(c
<=0xFF9F)) type3
|= C3_ALPHA
;
2304 if ((c
>=0xFFE8)&&(c
<=0xFFEE)) type3
|= C3_HALFWIDTH
;
2305 if ((c
>=0xFFE8)&&(c
<=0xFFEE)) type3
|= C3_SYMBOL
;
2306 *chartype
++ = type3
;
2311 SetLastError( ERROR_INVALID_PARAMETER
);
2318 /******************************************************************************
2319 * GetStringTypeExW (KERNEL32.@)
2321 * See GetStringTypeExA.
2323 BOOL WINAPI
GetStringTypeExW( LCID locale
, DWORD type
, LPCWSTR src
, INT count
, LPWORD chartype
)
2325 /* locale is ignored for Unicode */
2326 return GetStringTypeW( type
, src
, count
, chartype
);
2330 /******************************************************************************
2331 * GetStringTypeA (KERNEL32.@)
2333 * Get characteristics of the characters making up a string.
2336 * locale [I] Locale Id for the string
2337 * type [I] CT_CTYPE1 = classification, CT_CTYPE2 = directionality, CT_CTYPE3 = typographic info
2338 * src [I] String to analyse
2339 * count [I] Length of src in chars, or -1 if src is NUL terminated
2340 * chartype [O] Destination for the calculated characteristics
2343 * Success: TRUE. chartype is filled with the requested characteristics of each char
2345 * Failure: FALSE. Use GetLastError() to determine the cause.
2347 BOOL WINAPI
GetStringTypeA( LCID locale
, DWORD type
, LPCSTR src
, INT count
, LPWORD chartype
)
2354 if(count
== -1) count
= strlen(src
) + 1;
2356 if (!(cp
= get_lcid_codepage( locale
)))
2358 FIXME("For locale %04x using current ANSI code page\n", locale
);
2362 countW
= MultiByteToWideChar(cp
, 0, src
, count
, NULL
, 0);
2363 if((srcW
= HeapAlloc(GetProcessHeap(), 0, countW
* sizeof(WCHAR
))))
2365 MultiByteToWideChar(cp
, 0, src
, count
, srcW
, countW
);
2367 * NOTE: the target buffer has 1 word for each CHARACTER in the source
2368 * string, with multibyte characters there maybe be more bytes in count
2369 * than character space in the buffer!
2371 ret
= GetStringTypeW(type
, srcW
, countW
, chartype
);
2372 HeapFree(GetProcessHeap(), 0, srcW
);
2377 /******************************************************************************
2378 * GetStringTypeExA (KERNEL32.@)
2380 * Get characteristics of the characters making up a string.
2383 * locale [I] Locale Id for the string
2384 * type [I] CT_CTYPE1 = classification, CT_CTYPE2 = directionality, CT_CTYPE3 = typographic info
2385 * src [I] String to analyse
2386 * count [I] Length of src in chars, or -1 if src is NUL terminated
2387 * chartype [O] Destination for the calculated characteristics
2390 * Success: TRUE. chartype is filled with the requested characteristics of each char
2392 * Failure: FALSE. Use GetLastError() to determine the cause.
2394 BOOL WINAPI
GetStringTypeExA( LCID locale
, DWORD type
, LPCSTR src
, INT count
, LPWORD chartype
)
2396 return GetStringTypeA(locale
, type
, src
, count
, chartype
);
2400 /*************************************************************************
2401 * LCMapStringW (KERNEL32.@)
2405 INT WINAPI
LCMapStringW(LCID lcid
, DWORD flags
, LPCWSTR src
, INT srclen
,
2406 LPWSTR dst
, INT dstlen
)
2410 if (!src
|| !srclen
|| dstlen
< 0)
2412 SetLastError(ERROR_INVALID_PARAMETER
);
2416 /* mutually exclusive flags */
2417 if ((flags
& (LCMAP_LOWERCASE
| LCMAP_UPPERCASE
)) == (LCMAP_LOWERCASE
| LCMAP_UPPERCASE
) ||
2418 (flags
& (LCMAP_HIRAGANA
| LCMAP_KATAKANA
)) == (LCMAP_HIRAGANA
| LCMAP_KATAKANA
) ||
2419 (flags
& (LCMAP_HALFWIDTH
| LCMAP_FULLWIDTH
)) == (LCMAP_HALFWIDTH
| LCMAP_FULLWIDTH
) ||
2420 (flags
& (LCMAP_TRADITIONAL_CHINESE
| LCMAP_SIMPLIFIED_CHINESE
)) == (LCMAP_TRADITIONAL_CHINESE
| LCMAP_SIMPLIFIED_CHINESE
))
2422 SetLastError(ERROR_INVALID_FLAGS
);
2426 if (!dstlen
) dst
= NULL
;
2428 lcid
= ConvertDefaultLocale(lcid
);
2430 if (flags
& LCMAP_SORTKEY
)
2435 SetLastError(ERROR_INVALID_FLAGS
);
2439 if (srclen
< 0) srclen
= strlenW(src
);
2441 TRACE("(0x%04x,0x%08x,%s,%d,%p,%d)\n",
2442 lcid
, flags
, debugstr_wn(src
, srclen
), srclen
, dst
, dstlen
);
2444 ret
= wine_get_sortkey(flags
, src
, srclen
, (char *)dst
, dstlen
);
2446 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2452 /* SORT_STRINGSORT must be used exclusively with LCMAP_SORTKEY */
2453 if (flags
& SORT_STRINGSORT
)
2455 SetLastError(ERROR_INVALID_FLAGS
);
2459 if (srclen
< 0) srclen
= strlenW(src
) + 1;
2461 TRACE("(0x%04x,0x%08x,%s,%d,%p,%d)\n",
2462 lcid
, flags
, debugstr_wn(src
, srclen
), srclen
, dst
, dstlen
);
2464 if (!dst
) /* return required string length */
2468 for (len
= 0; srclen
; src
++, srclen
--)
2471 /* tests show that win2k just ignores NORM_IGNORENONSPACE,
2472 * and skips white space and punctuation characters for
2473 * NORM_IGNORESYMBOLS.
2475 if ((flags
& NORM_IGNORESYMBOLS
) && (get_char_typeW(wch
) & (C1_PUNCT
| C1_SPACE
)))
2482 if (flags
& LCMAP_UPPERCASE
)
2484 for (dst_ptr
= dst
; srclen
&& dstlen
; src
++, srclen
--)
2487 if ((flags
& NORM_IGNORESYMBOLS
) && (get_char_typeW(wch
) & (C1_PUNCT
| C1_SPACE
)))
2489 *dst_ptr
++ = toupperW(wch
);
2493 else if (flags
& LCMAP_LOWERCASE
)
2495 for (dst_ptr
= dst
; srclen
&& dstlen
; src
++, srclen
--)
2498 if ((flags
& NORM_IGNORESYMBOLS
) && (get_char_typeW(wch
) & (C1_PUNCT
| C1_SPACE
)))
2500 *dst_ptr
++ = tolowerW(wch
);
2508 SetLastError(ERROR_INVALID_FLAGS
);
2511 for (dst_ptr
= dst
; srclen
&& dstlen
; src
++, srclen
--)
2514 if ((flags
& NORM_IGNORESYMBOLS
) && (get_char_typeW(wch
) & (C1_PUNCT
| C1_SPACE
)))
2523 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2527 return dst_ptr
- dst
;
2530 /*************************************************************************
2531 * LCMapStringA (KERNEL32.@)
2533 * Map characters in a locale sensitive string.
2536 * lcid [I] LCID for the conversion.
2537 * flags [I] Flags controlling the mapping (LCMAP_ constants from "winnls.h").
2538 * src [I] String to map
2539 * srclen [I] Length of src in chars, or -1 if src is NUL terminated
2540 * dst [O] Destination for mapped string
2541 * dstlen [I] Length of dst in characters
2544 * Success: The length of the mapped string in dst, including the NUL terminator.
2545 * Failure: 0. Use GetLastError() to determine the cause.
2547 INT WINAPI
LCMapStringA(LCID lcid
, DWORD flags
, LPCSTR src
, INT srclen
,
2548 LPSTR dst
, INT dstlen
)
2550 WCHAR
*bufW
= NtCurrentTeb()->StaticUnicodeBuffer
;
2552 INT ret
= 0, srclenW
, dstlenW
;
2553 UINT locale_cp
= CP_ACP
;
2555 if (!src
|| !srclen
|| dstlen
< 0)
2557 SetLastError(ERROR_INVALID_PARAMETER
);
2561 if (!(flags
& LOCALE_USE_CP_ACP
)) locale_cp
= get_lcid_codepage( lcid
);
2563 srclenW
= MultiByteToWideChar(locale_cp
, 0, src
, srclen
, bufW
, 260);
2568 srclenW
= MultiByteToWideChar(locale_cp
, 0, src
, srclen
, NULL
, 0);
2569 srcW
= HeapAlloc(GetProcessHeap(), 0, srclenW
* sizeof(WCHAR
));
2572 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2575 MultiByteToWideChar(locale_cp
, 0, src
, srclen
, srcW
, srclenW
);
2578 if (flags
& LCMAP_SORTKEY
)
2582 SetLastError(ERROR_INVALID_FLAGS
);
2583 goto map_string_exit
;
2585 ret
= wine_get_sortkey(flags
, srcW
, srclenW
, dst
, dstlen
);
2587 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2590 goto map_string_exit
;
2593 if (flags
& SORT_STRINGSORT
)
2595 SetLastError(ERROR_INVALID_FLAGS
);
2596 goto map_string_exit
;
2599 dstlenW
= LCMapStringW(lcid
, flags
, srcW
, srclenW
, NULL
, 0);
2601 goto map_string_exit
;
2603 dstW
= HeapAlloc(GetProcessHeap(), 0, dstlenW
* sizeof(WCHAR
));
2606 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2607 goto map_string_exit
;
2610 LCMapStringW(lcid
, flags
, srcW
, srclenW
, dstW
, dstlenW
);
2611 ret
= WideCharToMultiByte(locale_cp
, 0, dstW
, dstlenW
, dst
, dstlen
, NULL
, NULL
);
2612 HeapFree(GetProcessHeap(), 0, dstW
);
2615 if (srcW
!= bufW
) HeapFree(GetProcessHeap(), 0, srcW
);
2619 /*************************************************************************
2620 * FoldStringA (KERNEL32.@)
2622 * Map characters in a string.
2625 * dwFlags [I] Flags controlling chars to map (MAP_ constants from "winnls.h")
2626 * src [I] String to map
2627 * srclen [I] Length of src, or -1 if src is NUL terminated
2628 * dst [O] Destination for mapped string
2629 * dstlen [I] Length of dst, or 0 to find the required length for the mapped string
2632 * Success: The length of the string written to dst, including the terminating NUL. If
2633 * dstlen is 0, the value returned is the same, but nothing is written to dst,
2634 * and dst may be NULL.
2635 * Failure: 0. Use GetLastError() to determine the cause.
2637 INT WINAPI
FoldStringA(DWORD dwFlags
, LPCSTR src
, INT srclen
,
2638 LPSTR dst
, INT dstlen
)
2640 INT ret
= 0, srclenW
= 0;
2641 WCHAR
*srcW
= NULL
, *dstW
= NULL
;
2643 if (!src
|| !srclen
|| dstlen
< 0 || (dstlen
&& !dst
) || src
== dst
)
2645 SetLastError(ERROR_INVALID_PARAMETER
);
2649 srclenW
= MultiByteToWideChar(CP_ACP
, dwFlags
& MAP_COMPOSITE
? MB_COMPOSITE
: 0,
2650 src
, srclen
, NULL
, 0);
2651 srcW
= HeapAlloc(GetProcessHeap(), 0, srclenW
* sizeof(WCHAR
));
2655 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2656 goto FoldStringA_exit
;
2659 MultiByteToWideChar(CP_ACP
, dwFlags
& MAP_COMPOSITE
? MB_COMPOSITE
: 0,
2660 src
, srclen
, srcW
, srclenW
);
2662 dwFlags
= (dwFlags
& ~MAP_PRECOMPOSED
) | MAP_FOLDCZONE
;
2664 ret
= FoldStringW(dwFlags
, srcW
, srclenW
, NULL
, 0);
2667 dstW
= HeapAlloc(GetProcessHeap(), 0, ret
* sizeof(WCHAR
));
2671 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2672 goto FoldStringA_exit
;
2675 ret
= FoldStringW(dwFlags
, srcW
, srclenW
, dstW
, ret
);
2676 if (!WideCharToMultiByte(CP_ACP
, 0, dstW
, ret
, dst
, dstlen
, NULL
, NULL
))
2679 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2683 HeapFree(GetProcessHeap(), 0, dstW
);
2686 HeapFree(GetProcessHeap(), 0, srcW
);
2690 /*************************************************************************
2691 * FoldStringW (KERNEL32.@)
2695 INT WINAPI
FoldStringW(DWORD dwFlags
, LPCWSTR src
, INT srclen
,
2696 LPWSTR dst
, INT dstlen
)
2700 switch (dwFlags
& (MAP_COMPOSITE
|MAP_PRECOMPOSED
|MAP_EXPAND_LIGATURES
))
2705 /* Fall through for dwFlags == 0 */
2706 case MAP_PRECOMPOSED
|MAP_COMPOSITE
:
2707 case MAP_PRECOMPOSED
|MAP_EXPAND_LIGATURES
:
2708 case MAP_COMPOSITE
|MAP_EXPAND_LIGATURES
:
2709 SetLastError(ERROR_INVALID_FLAGS
);
2713 if (!src
|| !srclen
|| dstlen
< 0 || (dstlen
&& !dst
) || src
== dst
)
2715 SetLastError(ERROR_INVALID_PARAMETER
);
2719 ret
= wine_fold_string(dwFlags
, src
, srclen
, dst
, dstlen
);
2721 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2725 /******************************************************************************
2726 * CompareStringW (KERNEL32.@)
2728 * See CompareStringA.
2730 INT WINAPI
CompareStringW(LCID lcid
, DWORD style
,
2731 LPCWSTR str1
, INT len1
, LPCWSTR str2
, INT len2
)
2737 SetLastError(ERROR_INVALID_PARAMETER
);
2741 if( style
& ~(NORM_IGNORECASE
|NORM_IGNORENONSPACE
|NORM_IGNORESYMBOLS
|
2742 SORT_STRINGSORT
|NORM_IGNOREKANATYPE
|NORM_IGNOREWIDTH
|LOCALE_USE_CP_ACP
|0x10000000) )
2744 SetLastError(ERROR_INVALID_FLAGS
);
2748 /* this style is related to diacritics in Arabic, Japanese, and Hebrew */
2749 if (style
& 0x10000000)
2750 WARN("Ignoring unknown style 0x10000000\n");
2752 if (len1
< 0) len1
= strlenW(str1
);
2753 if (len2
< 0) len2
= strlenW(str2
);
2755 ret
= wine_compare_string(style
, str1
, len1
, str2
, len2
);
2757 if (ret
) /* need to translate result */
2758 return (ret
< 0) ? CSTR_LESS_THAN
: CSTR_GREATER_THAN
;
2762 /******************************************************************************
2763 * CompareStringA (KERNEL32.@)
2765 * Compare two locale sensitive strings.
2768 * lcid [I] LCID for the comparison
2769 * style [I] Flags for the comparison (NORM_ constants from "winnls.h").
2770 * str1 [I] First string to compare
2771 * len1 [I] Length of str1, or -1 if str1 is NUL terminated
2772 * str2 [I] Second string to compare
2773 * len2 [I] Length of str2, or -1 if str2 is NUL terminated
2776 * Success: CSTR_LESS_THAN, CSTR_EQUAL or CSTR_GREATER_THAN depending on whether
2777 * str2 is less than, equal to or greater than str1 respectively.
2778 * Failure: FALSE. Use GetLastError() to determine the cause.
2780 INT WINAPI
CompareStringA(LCID lcid
, DWORD style
,
2781 LPCSTR str1
, INT len1
, LPCSTR str2
, INT len2
)
2783 WCHAR
*buf1W
= NtCurrentTeb()->StaticUnicodeBuffer
;
2784 WCHAR
*buf2W
= buf1W
+ 130;
2785 LPWSTR str1W
, str2W
;
2786 INT len1W
, len2W
, ret
;
2787 UINT locale_cp
= CP_ACP
;
2791 SetLastError(ERROR_INVALID_PARAMETER
);
2794 if (len1
< 0) len1
= strlen(str1
);
2795 if (len2
< 0) len2
= strlen(str2
);
2797 if (!(style
& LOCALE_USE_CP_ACP
)) locale_cp
= get_lcid_codepage( lcid
);
2799 len1W
= MultiByteToWideChar(locale_cp
, 0, str1
, len1
, buf1W
, 130);
2804 len1W
= MultiByteToWideChar(locale_cp
, 0, str1
, len1
, NULL
, 0);
2805 str1W
= HeapAlloc(GetProcessHeap(), 0, len1W
* sizeof(WCHAR
));
2808 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2811 MultiByteToWideChar(locale_cp
, 0, str1
, len1
, str1W
, len1W
);
2813 len2W
= MultiByteToWideChar(locale_cp
, 0, str2
, len2
, buf2W
, 130);
2818 len2W
= MultiByteToWideChar(locale_cp
, 0, str2
, len2
, NULL
, 0);
2819 str2W
= HeapAlloc(GetProcessHeap(), 0, len2W
* sizeof(WCHAR
));
2822 if (str1W
!= buf1W
) HeapFree(GetProcessHeap(), 0, str1W
);
2823 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2826 MultiByteToWideChar(locale_cp
, 0, str2
, len2
, str2W
, len2W
);
2829 ret
= CompareStringW(lcid
, style
, str1W
, len1W
, str2W
, len2W
);
2831 if (str1W
!= buf1W
) HeapFree(GetProcessHeap(), 0, str1W
);
2832 if (str2W
!= buf2W
) HeapFree(GetProcessHeap(), 0, str2W
);
2836 /*************************************************************************
2837 * lstrcmp (KERNEL32.@)
2838 * lstrcmpA (KERNEL32.@)
2840 * Compare two strings using the current thread locale.
2843 * str1 [I] First string to compare
2844 * str2 [I] Second string to compare
2847 * Success: A number less than, equal to or greater than 0 depending on whether
2848 * str2 is less than, equal to or greater than str1 respectively.
2849 * Failure: FALSE. Use GetLastError() to determine the cause.
2851 int WINAPI
lstrcmpA(LPCSTR str1
, LPCSTR str2
)
2855 if ((str1
== NULL
) && (str2
== NULL
)) return 0;
2856 if (str1
== NULL
) return -1;
2857 if (str2
== NULL
) return 1;
2859 ret
= CompareStringA(GetThreadLocale(), LOCALE_USE_CP_ACP
, str1
, -1, str2
, -1);
2865 /*************************************************************************
2866 * lstrcmpi (KERNEL32.@)
2867 * lstrcmpiA (KERNEL32.@)
2869 * Compare two strings using the current thread locale, ignoring case.
2872 * str1 [I] First string to compare
2873 * str2 [I] Second string to compare
2876 * Success: A number less than, equal to or greater than 0 depending on whether
2877 * str2 is less than, equal to or greater than str1 respectively.
2878 * Failure: FALSE. Use GetLastError() to determine the cause.
2880 int WINAPI
lstrcmpiA(LPCSTR str1
, LPCSTR str2
)
2884 if ((str1
== NULL
) && (str2
== NULL
)) return 0;
2885 if (str1
== NULL
) return -1;
2886 if (str2
== NULL
) return 1;
2888 ret
= CompareStringA(GetThreadLocale(), NORM_IGNORECASE
|LOCALE_USE_CP_ACP
, str1
, -1, str2
, -1);
2894 /*************************************************************************
2895 * lstrcmpW (KERNEL32.@)
2899 int WINAPI
lstrcmpW(LPCWSTR str1
, LPCWSTR str2
)
2903 if ((str1
== NULL
) && (str2
== NULL
)) return 0;
2904 if (str1
== NULL
) return -1;
2905 if (str2
== NULL
) return 1;
2907 ret
= CompareStringW(GetThreadLocale(), 0, str1
, -1, str2
, -1);
2913 /*************************************************************************
2914 * lstrcmpiW (KERNEL32.@)
2918 int WINAPI
lstrcmpiW(LPCWSTR str1
, LPCWSTR str2
)
2922 if ((str1
== NULL
) && (str2
== NULL
)) return 0;
2923 if (str1
== NULL
) return -1;
2924 if (str2
== NULL
) return 1;
2926 ret
= CompareStringW(GetThreadLocale(), NORM_IGNORECASE
, str1
, -1, str2
, -1);
2932 /******************************************************************************
2935 void LOCALE_Init(void)
2937 extern void CDECL
__wine_init_codepages( const union cptable
*ansi_cp
, const union cptable
*oem_cp
,
2938 const union cptable
*unix_cp
);
2940 UINT ansi_cp
= 1252, oem_cp
= 437, mac_cp
= 10000, unix_cp
;
2943 /* MacOS doesn't set the locale environment variables so we have to do it ourselves */
2944 char user_locale
[50];
2946 CFLocaleRef user_locale_ref
= CFLocaleCopyCurrent();
2947 CFStringRef user_locale_lang_ref
= CFLocaleGetValue( user_locale_ref
, kCFLocaleLanguageCode
);
2948 CFStringRef user_locale_country_ref
= CFLocaleGetValue( user_locale_ref
, kCFLocaleCountryCode
);
2949 CFStringRef user_locale_string_ref
;
2951 if (user_locale_country_ref
)
2953 user_locale_string_ref
= CFStringCreateWithFormat(NULL
, NULL
, CFSTR("%@_%@.UTF-8"),
2954 user_locale_lang_ref
, user_locale_country_ref
);
2958 user_locale_string_ref
= CFStringCreateWithFormat(NULL
, NULL
, CFSTR("%@.UTF-8"),
2959 user_locale_lang_ref
);
2962 CFStringGetCString( user_locale_string_ref
, user_locale
, sizeof(user_locale
), kCFStringEncodingUTF8
);
2964 unix_cp
= CP_UTF8
; /* default to utf-8 even if we don't get a valid locale */
2965 setenv( "LANG", user_locale
, 0 );
2966 TRACE( "setting locale to '%s'\n", user_locale
);
2967 #endif /* __APPLE__ */
2969 setlocale( LC_ALL
, "" );
2971 unix_cp
= setup_unix_locales();
2972 if (!lcid_LC_MESSAGES
) lcid_LC_MESSAGES
= lcid_LC_CTYPE
;
2975 /* Override lcid_LC_MESSAGES with user's preferred language if LC_MESSAGES is set to default */
2976 if (!getenv("LC_ALL") && !getenv("LC_MESSAGES"))
2978 /* Retrieve the preferred language as chosen in System Preferences. */
2979 /* If language is a less specific variant of locale (e.g. 'en' vs. 'en_US'),
2981 CFArrayRef all_locales
= CFLocaleCopyAvailableLocaleIdentifiers();
2982 CFArrayRef preferred_locales
= CFBundleCopyLocalizationsForPreferences( all_locales
, NULL
);
2983 CFStringRef user_language_string_ref
;
2984 if (preferred_locales
&& CFArrayGetCount( preferred_locales
) &&
2985 (user_language_string_ref
= CFArrayGetValueAtIndex( preferred_locales
, 0 )) &&
2986 !CFEqual(user_language_string_ref
, user_locale_lang_ref
))
2988 struct locale_name locale_name
;
2990 CFStringGetCString( user_language_string_ref
, user_locale
, sizeof(user_locale
), kCFStringEncodingUTF8
);
2991 strcpynAtoW( buffer
, user_locale
, sizeof(buffer
)/sizeof(WCHAR
) );
2992 parse_locale_name( buffer
, &locale_name
);
2993 lcid_LC_MESSAGES
= locale_name
.lcid
;
2994 TRACE( "setting lcid_LC_MESSAGES to '%s'\n", user_locale
);
2996 CFRelease( all_locales
);
2997 if (preferred_locales
)
2998 CFRelease( preferred_locales
);
3001 CFRelease( user_locale_ref
);
3002 CFRelease( user_locale_string_ref
);
3005 NtSetDefaultUILanguage( LANGIDFROMLCID(lcid_LC_MESSAGES
) );
3006 NtSetDefaultLocale( TRUE
, lcid_LC_MESSAGES
);
3007 NtSetDefaultLocale( FALSE
, lcid_LC_CTYPE
);
3009 ansi_cp
= get_lcid_codepage( LOCALE_USER_DEFAULT
);
3010 GetLocaleInfoW( LOCALE_USER_DEFAULT
, LOCALE_IDEFAULTMACCODEPAGE
| LOCALE_RETURN_NUMBER
,
3011 (LPWSTR
)&mac_cp
, sizeof(mac_cp
)/sizeof(WCHAR
) );
3012 GetLocaleInfoW( LOCALE_USER_DEFAULT
, LOCALE_IDEFAULTCODEPAGE
| LOCALE_RETURN_NUMBER
,
3013 (LPWSTR
)&oem_cp
, sizeof(oem_cp
)/sizeof(WCHAR
) );
3015 GetLocaleInfoW( LOCALE_USER_DEFAULT
, LOCALE_IDEFAULTUNIXCODEPAGE
| LOCALE_RETURN_NUMBER
,
3016 (LPWSTR
)&unix_cp
, sizeof(unix_cp
)/sizeof(WCHAR
) );
3018 if (!(ansi_cptable
= wine_cp_get_table( ansi_cp
)))
3019 ansi_cptable
= wine_cp_get_table( 1252 );
3020 if (!(oem_cptable
= wine_cp_get_table( oem_cp
)))
3021 oem_cptable
= wine_cp_get_table( 437 );
3022 if (!(mac_cptable
= wine_cp_get_table( mac_cp
)))
3023 mac_cptable
= wine_cp_get_table( 10000 );
3024 if (unix_cp
!= CP_UTF8
)
3026 if (!(unix_cptable
= wine_cp_get_table( unix_cp
)))
3027 unix_cptable
= wine_cp_get_table( 28591 );
3030 __wine_init_codepages( ansi_cptable
, oem_cptable
, unix_cptable
);
3032 TRACE( "ansi=%03d oem=%03d mac=%03d unix=%03d\n",
3033 ansi_cptable
->info
.codepage
, oem_cptable
->info
.codepage
,
3034 mac_cptable
->info
.codepage
, unix_cp
);
3036 setlocale(LC_NUMERIC
, "C"); /* FIXME: oleaut32 depends on this */
3039 static HANDLE
NLS_RegOpenKey(HANDLE hRootKey
, LPCWSTR szKeyName
)
3041 UNICODE_STRING keyName
;
3042 OBJECT_ATTRIBUTES attr
;
3045 RtlInitUnicodeString( &keyName
, szKeyName
);
3046 InitializeObjectAttributes(&attr
, &keyName
, 0, hRootKey
, NULL
);
3048 if (NtOpenKey( &hkey
, KEY_READ
, &attr
) != STATUS_SUCCESS
)
3054 static BOOL
NLS_RegEnumSubKey(HANDLE hKey
, UINT ulIndex
, LPWSTR szKeyName
,
3058 KEY_BASIC_INFORMATION
*info
= (KEY_BASIC_INFORMATION
*)buffer
;
3061 if (NtEnumerateKey( hKey
, ulIndex
, KeyBasicInformation
, buffer
,
3062 sizeof(buffer
), &dwLen
) != STATUS_SUCCESS
||
3063 info
->NameLength
> keyNameSize
)
3068 TRACE("info->Name %s info->NameLength %d\n", debugstr_w(info
->Name
), info
->NameLength
);
3070 memcpy( szKeyName
, info
->Name
, info
->NameLength
);
3071 szKeyName
[info
->NameLength
/ sizeof(WCHAR
)] = '\0';
3073 TRACE("returning %s\n", debugstr_w(szKeyName
));
3077 static BOOL
NLS_RegEnumValue(HANDLE hKey
, UINT ulIndex
,
3078 LPWSTR szValueName
, ULONG valueNameSize
,
3079 LPWSTR szValueData
, ULONG valueDataSize
)
3082 KEY_VALUE_FULL_INFORMATION
*info
= (KEY_VALUE_FULL_INFORMATION
*)buffer
;
3085 if (NtEnumerateValueKey( hKey
, ulIndex
, KeyValueFullInformation
,
3086 buffer
, sizeof(buffer
), &dwLen
) != STATUS_SUCCESS
||
3087 info
->NameLength
> valueNameSize
||
3088 info
->DataLength
> valueDataSize
)
3093 TRACE("info->Name %s info->DataLength %d\n", debugstr_w(info
->Name
), info
->DataLength
);
3095 memcpy( szValueName
, info
->Name
, info
->NameLength
);
3096 szValueName
[info
->NameLength
/ sizeof(WCHAR
)] = '\0';
3097 memcpy( szValueData
, buffer
+ info
->DataOffset
, info
->DataLength
);
3098 szValueData
[info
->DataLength
/ sizeof(WCHAR
)] = '\0';
3100 TRACE("returning %s %s\n", debugstr_w(szValueName
), debugstr_w(szValueData
));
3104 static BOOL
NLS_RegGetDword(HANDLE hKey
, LPCWSTR szValueName
, DWORD
*lpVal
)
3107 const KEY_VALUE_PARTIAL_INFORMATION
*info
= (KEY_VALUE_PARTIAL_INFORMATION
*)buffer
;
3108 DWORD dwSize
= sizeof(buffer
);
3109 UNICODE_STRING valueName
;
3111 RtlInitUnicodeString( &valueName
, szValueName
);
3113 TRACE("%p, %s\n", hKey
, debugstr_w(szValueName
));
3114 if (NtQueryValueKey( hKey
, &valueName
, KeyValuePartialInformation
,
3115 buffer
, dwSize
, &dwSize
) == STATUS_SUCCESS
&&
3116 info
->DataLength
== sizeof(DWORD
))
3118 memcpy(lpVal
, info
->Data
, sizeof(DWORD
));
3125 static BOOL
NLS_GetLanguageGroupName(LGRPID lgrpid
, LPWSTR szName
, ULONG nameSize
)
3128 LPCWSTR szResourceName
= MAKEINTRESOURCEW(((lgrpid
+ 0x2000) >> 4) + 1);
3132 /* FIXME: Is it correct to use the system default langid? */
3133 langId
= GetSystemDefaultLangID();
3135 if (SUBLANGID(langId
) == SUBLANG_NEUTRAL
)
3136 langId
= MAKELANGID( PRIMARYLANGID(langId
), SUBLANG_DEFAULT
);
3138 hResource
= FindResourceExW( kernel32_handle
, (LPWSTR
)RT_STRING
, szResourceName
, langId
);
3142 HGLOBAL hResDir
= LoadResource( kernel32_handle
, hResource
);
3146 ULONG iResourceIndex
= lgrpid
& 0xf;
3147 LPCWSTR lpResEntry
= LockResource( hResDir
);
3150 for (i
= 0; i
< iResourceIndex
; i
++)
3151 lpResEntry
+= *lpResEntry
+ 1;
3153 if (*lpResEntry
< nameSize
)
3155 memcpy( szName
, lpResEntry
+ 1, *lpResEntry
* sizeof(WCHAR
) );
3156 szName
[*lpResEntry
] = '\0';
3161 FreeResource( hResource
);
3166 /* Registry keys for NLS related information */
3168 static const WCHAR szCountryListName
[] = {
3169 'M','a','c','h','i','n','e','\\','S','o','f','t','w','a','r','e','\\',
3170 'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\',
3171 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
3172 'T','e','l','e','p','h','o','n','y','\\',
3173 'C','o','u','n','t','r','y',' ','L','i','s','t','\0'
3177 /* Callback function ptrs for EnumSystemLanguageGroupsA/W */
3180 LANGUAGEGROUP_ENUMPROCA procA
;
3181 LANGUAGEGROUP_ENUMPROCW procW
;
3184 } ENUMLANGUAGEGROUP_CALLBACKS
;
3186 /* Internal implementation of EnumSystemLanguageGroupsA/W */
3187 static BOOL
NLS_EnumSystemLanguageGroups(ENUMLANGUAGEGROUP_CALLBACKS
*lpProcs
)
3189 WCHAR szNumber
[10], szValue
[4];
3191 BOOL bContinue
= TRUE
;
3196 SetLastError(ERROR_INVALID_PARAMETER
);
3200 switch (lpProcs
->dwFlags
)
3203 /* Default to LGRPID_INSTALLED */
3204 lpProcs
->dwFlags
= LGRPID_INSTALLED
;
3205 /* Fall through... */
3206 case LGRPID_INSTALLED
:
3207 case LGRPID_SUPPORTED
:
3210 SetLastError(ERROR_INVALID_FLAGS
);
3214 hKey
= NLS_RegOpenKey( 0, szLangGroupsKeyName
);
3217 FIXME("NLS registry key not found. Please apply the default registry file 'wine.inf'\n");
3221 if (NLS_RegEnumValue( hKey
, ulIndex
, szNumber
, sizeof(szNumber
),
3222 szValue
, sizeof(szValue
) ))
3224 BOOL bInstalled
= szValue
[0] == '1' ? TRUE
: FALSE
;
3225 LGRPID lgrpid
= strtoulW( szNumber
, NULL
, 16 );
3227 TRACE("grpid %s (%sinstalled)\n", debugstr_w(szNumber
),
3228 bInstalled
? "" : "not ");
3230 if (lpProcs
->dwFlags
== LGRPID_SUPPORTED
|| bInstalled
)
3232 WCHAR szGrpName
[48];
3234 if (!NLS_GetLanguageGroupName( lgrpid
, szGrpName
, sizeof(szGrpName
) / sizeof(WCHAR
) ))
3235 szGrpName
[0] = '\0';
3238 bContinue
= lpProcs
->procW( lgrpid
, szNumber
, szGrpName
, lpProcs
->dwFlags
,
3242 char szNumberA
[sizeof(szNumber
)/sizeof(WCHAR
)];
3243 char szGrpNameA
[48];
3245 /* FIXME: MSDN doesn't say which code page the W->A translation uses,
3246 * or whether the language names are ever localised. Assume CP_ACP.
3249 WideCharToMultiByte(CP_ACP
, 0, szNumber
, -1, szNumberA
, sizeof(szNumberA
), 0, 0);
3250 WideCharToMultiByte(CP_ACP
, 0, szGrpName
, -1, szGrpNameA
, sizeof(szGrpNameA
), 0, 0);
3252 bContinue
= lpProcs
->procA( lgrpid
, szNumberA
, szGrpNameA
, lpProcs
->dwFlags
,
3272 /******************************************************************************
3273 * EnumSystemLanguageGroupsA (KERNEL32.@)
3275 * Call a users function for each language group available on the system.
3278 * pLangGrpEnumProc [I] Callback function to call for each language group
3279 * dwFlags [I] LGRPID_SUPPORTED=All Supported, LGRPID_INSTALLED=Installed only
3280 * lParam [I] User parameter to pass to pLangGrpEnumProc
3284 * Failure: FALSE. Use GetLastError() to determine the cause.
3286 BOOL WINAPI
EnumSystemLanguageGroupsA(LANGUAGEGROUP_ENUMPROCA pLangGrpEnumProc
,
3287 DWORD dwFlags
, LONG_PTR lParam
)
3289 ENUMLANGUAGEGROUP_CALLBACKS procs
;
3291 TRACE("(%p,0x%08X,0x%08lX)\n", pLangGrpEnumProc
, dwFlags
, lParam
);
3293 procs
.procA
= pLangGrpEnumProc
;
3295 procs
.dwFlags
= dwFlags
;
3296 procs
.lParam
= lParam
;
3298 return NLS_EnumSystemLanguageGroups( pLangGrpEnumProc
? &procs
: NULL
);
3301 /******************************************************************************
3302 * EnumSystemLanguageGroupsW (KERNEL32.@)
3304 * See EnumSystemLanguageGroupsA.
3306 BOOL WINAPI
EnumSystemLanguageGroupsW(LANGUAGEGROUP_ENUMPROCW pLangGrpEnumProc
,
3307 DWORD dwFlags
, LONG_PTR lParam
)
3309 ENUMLANGUAGEGROUP_CALLBACKS procs
;
3311 TRACE("(%p,0x%08X,0x%08lX)\n", pLangGrpEnumProc
, dwFlags
, lParam
);
3314 procs
.procW
= pLangGrpEnumProc
;
3315 procs
.dwFlags
= dwFlags
;
3316 procs
.lParam
= lParam
;
3318 return NLS_EnumSystemLanguageGroups( pLangGrpEnumProc
? &procs
: NULL
);
3321 /******************************************************************************
3322 * IsValidLanguageGroup (KERNEL32.@)
3324 * Determine if a language group is supported and/or installed.
3327 * lgrpid [I] Language Group Id (LGRPID_ values from "winnls.h")
3328 * dwFlags [I] LGRPID_SUPPORTED=Supported, LGRPID_INSTALLED=Installed
3331 * TRUE, if lgrpid is supported and/or installed, according to dwFlags.
3334 BOOL WINAPI
IsValidLanguageGroup(LGRPID lgrpid
, DWORD dwFlags
)
3336 static const WCHAR szFormat
[] = { '%','x','\0' };
3337 WCHAR szValueName
[16], szValue
[2];
3338 BOOL bSupported
= FALSE
, bInstalled
= FALSE
;
3344 case LGRPID_INSTALLED
:
3345 case LGRPID_SUPPORTED
:
3347 hKey
= NLS_RegOpenKey( 0, szLangGroupsKeyName
);
3349 sprintfW( szValueName
, szFormat
, lgrpid
);
3351 if (NLS_RegGetDword( hKey
, szValueName
, (LPDWORD
)szValue
))
3355 if (szValue
[0] == '1')
3365 if ((dwFlags
== LGRPID_SUPPORTED
&& bSupported
) ||
3366 (dwFlags
== LGRPID_INSTALLED
&& bInstalled
))
3372 /* Callback function ptrs for EnumLanguageGrouplocalesA/W */
3375 LANGGROUPLOCALE_ENUMPROCA procA
;
3376 LANGGROUPLOCALE_ENUMPROCW procW
;
3380 } ENUMLANGUAGEGROUPLOCALE_CALLBACKS
;
3382 /* Internal implementation of EnumLanguageGrouplocalesA/W */
3383 static BOOL
NLS_EnumLanguageGroupLocales(ENUMLANGUAGEGROUPLOCALE_CALLBACKS
*lpProcs
)
3385 static const WCHAR szAlternateSortsKeyName
[] = {
3386 'A','l','t','e','r','n','a','t','e',' ','S','o','r','t','s','\0'
3388 WCHAR szNumber
[10], szValue
[4];
3390 BOOL bContinue
= TRUE
, bAlternate
= FALSE
;
3392 ULONG ulIndex
= 1; /* Ignore default entry of 1st key */
3394 if (!lpProcs
|| !lpProcs
->lgrpid
|| lpProcs
->lgrpid
> LGRPID_ARMENIAN
)
3396 SetLastError(ERROR_INVALID_PARAMETER
);
3400 if (lpProcs
->dwFlags
)
3402 SetLastError(ERROR_INVALID_FLAGS
);
3406 hKey
= NLS_RegOpenKey( 0, szLocaleKeyName
);
3409 WARN("NLS registry key not found. Please apply the default registry file 'wine.inf'\n");
3413 if (NLS_RegEnumValue( hKey
, ulIndex
, szNumber
, sizeof(szNumber
),
3414 szValue
, sizeof(szValue
) ))
3416 lgrpid
= strtoulW( szValue
, NULL
, 16 );
3418 TRACE("lcid %s, grpid %d (%smatched)\n", debugstr_w(szNumber
),
3419 lgrpid
, lgrpid
== lpProcs
->lgrpid
? "" : "not ");
3421 if (lgrpid
== lpProcs
->lgrpid
)
3425 lcid
= strtoulW( szNumber
, NULL
, 16 );
3427 /* FIXME: native returns extra text for a few (17/150) locales, e.g:
3428 * '00000437 ;Georgian'
3429 * At present we only pass the LCID string.
3433 bContinue
= lpProcs
->procW( lgrpid
, lcid
, szNumber
, lpProcs
->lParam
);
3436 char szNumberA
[sizeof(szNumber
)/sizeof(WCHAR
)];
3438 WideCharToMultiByte(CP_ACP
, 0, szNumber
, -1, szNumberA
, sizeof(szNumberA
), 0, 0);
3440 bContinue
= lpProcs
->procA( lgrpid
, lcid
, szNumberA
, lpProcs
->lParam
);
3448 /* Finished enumerating this key */
3451 /* Enumerate alternate sorts also */
3452 hKey
= NLS_RegOpenKey( hKey
, szAlternateSortsKeyName
);
3457 bContinue
= FALSE
; /* Finished both keys */
3470 /******************************************************************************
3471 * EnumLanguageGroupLocalesA (KERNEL32.@)
3473 * Call a users function for every locale in a language group available on the system.
3476 * pLangGrpLcEnumProc [I] Callback function to call for each locale
3477 * lgrpid [I] Language group (LGRPID_ values from "winnls.h")
3478 * dwFlags [I] Reserved, set to 0
3479 * lParam [I] User parameter to pass to pLangGrpLcEnumProc
3483 * Failure: FALSE. Use GetLastError() to determine the cause.
3485 BOOL WINAPI
EnumLanguageGroupLocalesA(LANGGROUPLOCALE_ENUMPROCA pLangGrpLcEnumProc
,
3486 LGRPID lgrpid
, DWORD dwFlags
, LONG_PTR lParam
)
3488 ENUMLANGUAGEGROUPLOCALE_CALLBACKS callbacks
;
3490 TRACE("(%p,0x%08X,0x%08X,0x%08lX)\n", pLangGrpLcEnumProc
, lgrpid
, dwFlags
, lParam
);
3492 callbacks
.procA
= pLangGrpLcEnumProc
;
3493 callbacks
.procW
= NULL
;
3494 callbacks
.dwFlags
= dwFlags
;
3495 callbacks
.lgrpid
= lgrpid
;
3496 callbacks
.lParam
= lParam
;
3498 return NLS_EnumLanguageGroupLocales( pLangGrpLcEnumProc
? &callbacks
: NULL
);
3501 /******************************************************************************
3502 * EnumLanguageGroupLocalesW (KERNEL32.@)
3504 * See EnumLanguageGroupLocalesA.
3506 BOOL WINAPI
EnumLanguageGroupLocalesW(LANGGROUPLOCALE_ENUMPROCW pLangGrpLcEnumProc
,
3507 LGRPID lgrpid
, DWORD dwFlags
, LONG_PTR lParam
)
3509 ENUMLANGUAGEGROUPLOCALE_CALLBACKS callbacks
;
3511 TRACE("(%p,0x%08X,0x%08X,0x%08lX)\n", pLangGrpLcEnumProc
, lgrpid
, dwFlags
, lParam
);
3513 callbacks
.procA
= NULL
;
3514 callbacks
.procW
= pLangGrpLcEnumProc
;
3515 callbacks
.dwFlags
= dwFlags
;
3516 callbacks
.lgrpid
= lgrpid
;
3517 callbacks
.lParam
= lParam
;
3519 return NLS_EnumLanguageGroupLocales( pLangGrpLcEnumProc
? &callbacks
: NULL
);
3522 /******************************************************************************
3523 * EnumSystemGeoID (KERNEL32.@)
3525 * Call a users function for every location available on the system.
3528 * geoclass [I] Type of information desired (SYSGEOTYPE enum from "winnls.h")
3529 * reserved [I] Reserved, set to 0
3530 * pGeoEnumProc [I] Callback function to call for each location
3534 * Failure: FALSE. Use GetLastError() to determine the cause.
3536 BOOL WINAPI
EnumSystemGeoID(GEOCLASS geoclass
, GEOID reserved
, GEO_ENUMPROC pGeoEnumProc
)
3538 static const WCHAR szCountryCodeValueName
[] = {
3539 'C','o','u','n','t','r','y','C','o','d','e','\0'
3545 TRACE("(0x%08X,0x%08X,%p)\n", geoclass
, reserved
, pGeoEnumProc
);
3547 if (geoclass
!= GEOCLASS_NATION
|| reserved
|| !pGeoEnumProc
)
3549 SetLastError(ERROR_INVALID_PARAMETER
);
3553 hKey
= NLS_RegOpenKey( 0, szCountryListName
);
3555 while (NLS_RegEnumSubKey( hKey
, ulIndex
, szNumber
, sizeof(szNumber
) ))
3557 BOOL bContinue
= TRUE
;
3559 HANDLE hSubKey
= NLS_RegOpenKey( hKey
, szNumber
);
3563 if (NLS_RegGetDword( hSubKey
, szCountryCodeValueName
, &dwGeoId
))
3565 TRACE("Got geoid %d\n", dwGeoId
);
3567 if (!pGeoEnumProc( dwGeoId
))
3586 /******************************************************************************
3587 * InvalidateNLSCache (KERNEL32.@)
3589 * Invalidate the cache of NLS values.
3598 BOOL WINAPI
InvalidateNLSCache(void)
3604 /******************************************************************************
3605 * GetUserGeoID (KERNEL32.@)
3607 GEOID WINAPI
GetUserGeoID( GEOCLASS GeoClass
)
3609 GEOID ret
= GEOID_NOT_AVAILABLE
;
3610 static const WCHAR geoW
[] = {'G','e','o',0};
3611 static const WCHAR nationW
[] = {'N','a','t','i','o','n',0};
3612 WCHAR bufferW
[40], *end
;
3614 HANDLE hkey
, hSubkey
= 0;
3615 UNICODE_STRING keyW
;
3616 const KEY_VALUE_PARTIAL_INFORMATION
*info
= (KEY_VALUE_PARTIAL_INFORMATION
*)bufferW
;
3617 RtlInitUnicodeString( &keyW
, nationW
);
3618 count
= sizeof(bufferW
);
3620 if(!(hkey
= create_registry_key())) return ret
;
3623 case GEOCLASS_NATION
:
3624 if ((hSubkey
= NLS_RegOpenKey(hkey
, geoW
)))
3626 if((NtQueryValueKey(hSubkey
, &keyW
, KeyValuePartialInformation
,
3627 bufferW
, count
, &count
) == STATUS_SUCCESS
) && info
->DataLength
)
3628 ret
= strtolW((LPCWSTR
)info
->Data
, &end
, 10);
3631 case GEOCLASS_REGION
:
3632 FIXME("GEOCLASS_REGION not handled yet\n");
3637 if (hSubkey
) NtClose(hSubkey
);
3641 /******************************************************************************
3642 * SetUserGeoID (KERNEL32.@)
3644 BOOL WINAPI
SetUserGeoID( GEOID GeoID
)
3646 static const WCHAR geoW
[] = {'G','e','o',0};
3647 static const WCHAR nationW
[] = {'N','a','t','i','o','n',0};
3648 static const WCHAR formatW
[] = {'%','i',0};
3649 UNICODE_STRING nameW
,keyW
;
3651 OBJECT_ATTRIBUTES attr
;
3654 if(!(hkey
= create_registry_key())) return FALSE
;
3656 attr
.Length
= sizeof(attr
);
3657 attr
.RootDirectory
= hkey
;
3658 attr
.ObjectName
= &nameW
;
3659 attr
.Attributes
= 0;
3660 attr
.SecurityDescriptor
= NULL
;
3661 attr
.SecurityQualityOfService
= NULL
;
3662 RtlInitUnicodeString( &nameW
, geoW
);
3663 RtlInitUnicodeString( &keyW
, nationW
);
3665 if (NtCreateKey( &hkey
, KEY_ALL_ACCESS
, &attr
, 0, NULL
, 0, NULL
) != STATUS_SUCCESS
)
3668 NtClose(attr
.RootDirectory
);
3672 sprintfW(bufferW
, formatW
, GeoID
);
3673 NtSetValueKey(hkey
, &keyW
, 0, REG_SZ
, bufferW
, (strlenW(bufferW
) + 1) * sizeof(WCHAR
));
3674 NtClose(attr
.RootDirectory
);
3683 UILANGUAGE_ENUMPROCA procA
;
3684 UILANGUAGE_ENUMPROCW procW
;
3688 } ENUM_UILANG_CALLBACK
;
3690 static BOOL CALLBACK
enum_uilang_proc_a( HMODULE hModule
, LPCSTR type
,
3691 LPCSTR name
, WORD LangID
, LONG_PTR lParam
)
3693 ENUM_UILANG_CALLBACK
*enum_uilang
= (ENUM_UILANG_CALLBACK
*)lParam
;
3696 sprintf(buf
, "%08x", (UINT
)LangID
);
3697 return enum_uilang
->u
.procA( buf
, enum_uilang
->param
);
3700 static BOOL CALLBACK
enum_uilang_proc_w( HMODULE hModule
, LPCWSTR type
,
3701 LPCWSTR name
, WORD LangID
, LONG_PTR lParam
)
3703 static const WCHAR formatW
[] = {'%','0','8','x',0};
3704 ENUM_UILANG_CALLBACK
*enum_uilang
= (ENUM_UILANG_CALLBACK
*)lParam
;
3707 sprintfW( buf
, formatW
, (UINT
)LangID
);
3708 return enum_uilang
->u
.procW( buf
, enum_uilang
->param
);
3711 /******************************************************************************
3712 * EnumUILanguagesA (KERNEL32.@)
3714 BOOL WINAPI
EnumUILanguagesA(UILANGUAGE_ENUMPROCA pUILangEnumProc
, DWORD dwFlags
, LONG_PTR lParam
)
3716 ENUM_UILANG_CALLBACK enum_uilang
;
3718 TRACE("%p, %x, %lx\n", pUILangEnumProc
, dwFlags
, lParam
);
3720 if(!pUILangEnumProc
) {
3721 SetLastError(ERROR_INVALID_PARAMETER
);
3725 SetLastError(ERROR_INVALID_FLAGS
);
3729 enum_uilang
.u
.procA
= pUILangEnumProc
;
3730 enum_uilang
.flags
= dwFlags
;
3731 enum_uilang
.param
= lParam
;
3733 EnumResourceLanguagesA( kernel32_handle
, (LPCSTR
)RT_STRING
,
3734 (LPCSTR
)LOCALE_ILANGUAGE
, enum_uilang_proc_a
,
3735 (LONG_PTR
)&enum_uilang
);
3739 /******************************************************************************
3740 * EnumUILanguagesW (KERNEL32.@)
3742 BOOL WINAPI
EnumUILanguagesW(UILANGUAGE_ENUMPROCW pUILangEnumProc
, DWORD dwFlags
, LONG_PTR lParam
)
3744 ENUM_UILANG_CALLBACK enum_uilang
;
3746 TRACE("%p, %x, %lx\n", pUILangEnumProc
, dwFlags
, lParam
);
3749 if(!pUILangEnumProc
) {
3750 SetLastError(ERROR_INVALID_PARAMETER
);
3754 SetLastError(ERROR_INVALID_FLAGS
);
3758 enum_uilang
.u
.procW
= pUILangEnumProc
;
3759 enum_uilang
.flags
= dwFlags
;
3760 enum_uilang
.param
= lParam
;
3762 EnumResourceLanguagesW( kernel32_handle
, (LPCWSTR
)RT_STRING
,
3763 (LPCWSTR
)LOCALE_ILANGUAGE
, enum_uilang_proc_w
,
3764 (LONG_PTR
)&enum_uilang
);
3768 INT WINAPI
GetGeoInfoW(GEOID GeoId
, GEOTYPE GeoType
, LPWSTR lpGeoData
,
3769 int cchData
, LANGID language
)
3771 FIXME("%d %d %p %d %d\n", GeoId
, GeoType
, lpGeoData
, cchData
, language
);
3775 INT WINAPI
GetGeoInfoA(GEOID GeoId
, GEOTYPE GeoType
, LPSTR lpGeoData
,
3776 int cchData
, LANGID language
)
3778 FIXME("%d %d %p %d %d\n", GeoId
, GeoType
, lpGeoData
, cchData
, language
);