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 struct enum_locale_ex_data
2227 LOCALE_ENUMPROCEX proc
;
2232 static BOOL CALLBACK
enum_locale_ex_proc( HMODULE module
, LPCWSTR type
,
2233 LPCWSTR name
, WORD lang
, LONG_PTR lparam
)
2235 struct enum_locale_ex_data
*data
= (struct enum_locale_ex_data
*)lparam
;
2240 GetLocaleInfoW( MAKELCID( lang
, SORT_DEFAULT
), LOCALE_SNAME
| LOCALE_NOUSEROVERRIDE
,
2241 buffer
, sizeof(buffer
) / sizeof(WCHAR
) );
2242 if (!GetLocaleInfoW( MAKELCID( lang
, SORT_DEFAULT
),
2243 LOCALE_INEUTRAL
| LOCALE_NOUSEROVERRIDE
| LOCALE_RETURN_NUMBER
,
2244 (LPWSTR
)&neutral
, sizeof(neutral
) / sizeof(WCHAR
) ))
2246 flags
= LOCALE_WINDOWS
;
2247 flags
|= neutral
? LOCALE_NEUTRALDATA
: LOCALE_SPECIFICDATA
;
2248 if (data
->flags
&& ~(data
->flags
& flags
)) return TRUE
;
2249 return data
->proc( buffer
, flags
, data
->lparam
);
2252 /******************************************************************************
2253 * EnumSystemLocalesEx (KERNEL32.@)
2255 BOOL WINAPI
EnumSystemLocalesEx( LOCALE_ENUMPROCEX proc
, DWORD flags
, LPARAM lparam
, LPVOID reserved
)
2257 struct enum_locale_ex_data data
;
2261 SetLastError( ERROR_INVALID_PARAMETER
);
2266 data
.lparam
= lparam
;
2267 EnumResourceLanguagesW( kernel32_handle
, (LPCWSTR
)RT_STRING
,
2268 (LPCWSTR
)MAKEINTRESOURCE((LOCALE_SNAME
>> 4) + 1),
2269 enum_locale_ex_proc
, (LONG_PTR
)&data
);
2274 /***********************************************************************
2275 * VerLanguageNameA (KERNEL32.@)
2277 * Get the name of a language.
2280 * wLang [I] LANGID of the language
2281 * szLang [O] Destination for the language name
2284 * Success: The size of the language name. If szLang is non-NULL, it is filled
2286 * Failure: 0. Use GetLastError() to determine the cause.
2289 DWORD WINAPI
VerLanguageNameA( DWORD wLang
, LPSTR szLang
, DWORD nSize
)
2291 return GetLocaleInfoA( MAKELCID(wLang
, SORT_DEFAULT
), LOCALE_SENGLANGUAGE
, szLang
, nSize
);
2295 /***********************************************************************
2296 * VerLanguageNameW (KERNEL32.@)
2298 * See VerLanguageNameA.
2300 DWORD WINAPI
VerLanguageNameW( DWORD wLang
, LPWSTR szLang
, DWORD nSize
)
2302 return GetLocaleInfoW( MAKELCID(wLang
, SORT_DEFAULT
), LOCALE_SENGLANGUAGE
, szLang
, nSize
);
2306 /******************************************************************************
2307 * GetStringTypeW (KERNEL32.@)
2309 * See GetStringTypeA.
2311 BOOL WINAPI
GetStringTypeW( DWORD type
, LPCWSTR src
, INT count
, LPWORD chartype
)
2313 static const unsigned char type2_map
[16] =
2315 C2_NOTAPPLICABLE
, /* unassigned */
2316 C2_LEFTTORIGHT
, /* L */
2317 C2_RIGHTTOLEFT
, /* R */
2318 C2_EUROPENUMBER
, /* EN */
2319 C2_EUROPESEPARATOR
, /* ES */
2320 C2_EUROPETERMINATOR
, /* ET */
2321 C2_ARABICNUMBER
, /* AN */
2322 C2_COMMONSEPARATOR
, /* CS */
2323 C2_BLOCKSEPARATOR
, /* B */
2324 C2_SEGMENTSEPARATOR
, /* S */
2325 C2_WHITESPACE
, /* WS */
2326 C2_OTHERNEUTRAL
, /* ON */
2327 C2_RIGHTTOLEFT
, /* AL */
2328 C2_NOTAPPLICABLE
, /* NSM */
2329 C2_NOTAPPLICABLE
, /* BN */
2330 C2_OTHERNEUTRAL
/* LRE, LRO, RLE, RLO, PDF */
2333 if (count
== -1) count
= strlenW(src
) + 1;
2337 while (count
--) *chartype
++ = get_char_typeW( *src
++ ) & 0xfff;
2340 while (count
--) *chartype
++ = type2_map
[get_char_typeW( *src
++ ) >> 12];
2344 WARN("CT_CTYPE3: semi-stub.\n");
2348 WORD type1
, type3
= 0; /* C3_NOTAPPLICABLE */
2350 type1
= get_char_typeW( *src
++ ) & 0xfff;
2351 /* try to construct type3 from type1 */
2352 if(type1
& C1_SPACE
) type3
|= C3_SYMBOL
;
2353 if(type1
& C1_ALPHA
) type3
|= C3_ALPHA
;
2354 if ((c
>=0x30A0)&&(c
<=0x30FF)) type3
|= C3_KATAKANA
;
2355 if ((c
>=0x3040)&&(c
<=0x309F)) type3
|= C3_HIRAGANA
;
2356 if ((c
>=0x4E00)&&(c
<=0x9FAF)) type3
|= C3_IDEOGRAPH
;
2357 if ((c
>=0x0600)&&(c
<=0x06FF)) type3
|= C3_KASHIDA
;
2358 if ((c
>=0x3000)&&(c
<=0x303F)) type3
|= C3_SYMBOL
;
2360 if ((c
>=0xFF00)&&(c
<=0xFF60)) type3
|= C3_FULLWIDTH
;
2361 if ((c
>=0xFF00)&&(c
<=0xFF20)) type3
|= C3_SYMBOL
;
2362 if ((c
>=0xFF3B)&&(c
<=0xFF40)) type3
|= C3_SYMBOL
;
2363 if ((c
>=0xFF5B)&&(c
<=0xFF60)) type3
|= C3_SYMBOL
;
2364 if ((c
>=0xFF21)&&(c
<=0xFF3A)) type3
|= C3_ALPHA
;
2365 if ((c
>=0xFF41)&&(c
<=0xFF5A)) type3
|= C3_ALPHA
;
2366 if ((c
>=0xFFE0)&&(c
<=0xFFE6)) type3
|= C3_FULLWIDTH
;
2367 if ((c
>=0xFFE0)&&(c
<=0xFFE6)) type3
|= C3_SYMBOL
;
2369 if ((c
>=0xFF61)&&(c
<=0xFFDC)) type3
|= C3_HALFWIDTH
;
2370 if ((c
>=0xFF61)&&(c
<=0xFF64)) type3
|= C3_SYMBOL
;
2371 if ((c
>=0xFF65)&&(c
<=0xFF9F)) type3
|= C3_KATAKANA
;
2372 if ((c
>=0xFF65)&&(c
<=0xFF9F)) type3
|= C3_ALPHA
;
2373 if ((c
>=0xFFE8)&&(c
<=0xFFEE)) type3
|= C3_HALFWIDTH
;
2374 if ((c
>=0xFFE8)&&(c
<=0xFFEE)) type3
|= C3_SYMBOL
;
2375 *chartype
++ = type3
;
2380 SetLastError( ERROR_INVALID_PARAMETER
);
2387 /******************************************************************************
2388 * GetStringTypeExW (KERNEL32.@)
2390 * See GetStringTypeExA.
2392 BOOL WINAPI
GetStringTypeExW( LCID locale
, DWORD type
, LPCWSTR src
, INT count
, LPWORD chartype
)
2394 /* locale is ignored for Unicode */
2395 return GetStringTypeW( type
, src
, count
, chartype
);
2399 /******************************************************************************
2400 * GetStringTypeA (KERNEL32.@)
2402 * Get characteristics of the characters making up a string.
2405 * locale [I] Locale Id for the string
2406 * type [I] CT_CTYPE1 = classification, CT_CTYPE2 = directionality, CT_CTYPE3 = typographic info
2407 * src [I] String to analyse
2408 * count [I] Length of src in chars, or -1 if src is NUL terminated
2409 * chartype [O] Destination for the calculated characteristics
2412 * Success: TRUE. chartype is filled with the requested characteristics of each char
2414 * Failure: FALSE. Use GetLastError() to determine the cause.
2416 BOOL WINAPI
GetStringTypeA( LCID locale
, DWORD type
, LPCSTR src
, INT count
, LPWORD chartype
)
2423 if(count
== -1) count
= strlen(src
) + 1;
2425 if (!(cp
= get_lcid_codepage( locale
)))
2427 FIXME("For locale %04x using current ANSI code page\n", locale
);
2431 countW
= MultiByteToWideChar(cp
, 0, src
, count
, NULL
, 0);
2432 if((srcW
= HeapAlloc(GetProcessHeap(), 0, countW
* sizeof(WCHAR
))))
2434 MultiByteToWideChar(cp
, 0, src
, count
, srcW
, countW
);
2436 * NOTE: the target buffer has 1 word for each CHARACTER in the source
2437 * string, with multibyte characters there maybe be more bytes in count
2438 * than character space in the buffer!
2440 ret
= GetStringTypeW(type
, srcW
, countW
, chartype
);
2441 HeapFree(GetProcessHeap(), 0, srcW
);
2446 /******************************************************************************
2447 * GetStringTypeExA (KERNEL32.@)
2449 * Get characteristics of the characters making up a string.
2452 * locale [I] Locale Id for the string
2453 * type [I] CT_CTYPE1 = classification, CT_CTYPE2 = directionality, CT_CTYPE3 = typographic info
2454 * src [I] String to analyse
2455 * count [I] Length of src in chars, or -1 if src is NUL terminated
2456 * chartype [O] Destination for the calculated characteristics
2459 * Success: TRUE. chartype is filled with the requested characteristics of each char
2461 * Failure: FALSE. Use GetLastError() to determine the cause.
2463 BOOL WINAPI
GetStringTypeExA( LCID locale
, DWORD type
, LPCSTR src
, INT count
, LPWORD chartype
)
2465 return GetStringTypeA(locale
, type
, src
, count
, chartype
);
2469 /*************************************************************************
2470 * LCMapStringW (KERNEL32.@)
2474 INT WINAPI
LCMapStringW(LCID lcid
, DWORD flags
, LPCWSTR src
, INT srclen
,
2475 LPWSTR dst
, INT dstlen
)
2479 if (!src
|| !srclen
|| dstlen
< 0)
2481 SetLastError(ERROR_INVALID_PARAMETER
);
2485 /* mutually exclusive flags */
2486 if ((flags
& (LCMAP_LOWERCASE
| LCMAP_UPPERCASE
)) == (LCMAP_LOWERCASE
| LCMAP_UPPERCASE
) ||
2487 (flags
& (LCMAP_HIRAGANA
| LCMAP_KATAKANA
)) == (LCMAP_HIRAGANA
| LCMAP_KATAKANA
) ||
2488 (flags
& (LCMAP_HALFWIDTH
| LCMAP_FULLWIDTH
)) == (LCMAP_HALFWIDTH
| LCMAP_FULLWIDTH
) ||
2489 (flags
& (LCMAP_TRADITIONAL_CHINESE
| LCMAP_SIMPLIFIED_CHINESE
)) == (LCMAP_TRADITIONAL_CHINESE
| LCMAP_SIMPLIFIED_CHINESE
))
2491 SetLastError(ERROR_INVALID_FLAGS
);
2495 if (!dstlen
) dst
= NULL
;
2497 lcid
= ConvertDefaultLocale(lcid
);
2499 if (flags
& LCMAP_SORTKEY
)
2504 SetLastError(ERROR_INVALID_FLAGS
);
2508 if (srclen
< 0) srclen
= strlenW(src
);
2510 TRACE("(0x%04x,0x%08x,%s,%d,%p,%d)\n",
2511 lcid
, flags
, debugstr_wn(src
, srclen
), srclen
, dst
, dstlen
);
2513 ret
= wine_get_sortkey(flags
, src
, srclen
, (char *)dst
, dstlen
);
2515 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2521 /* SORT_STRINGSORT must be used exclusively with LCMAP_SORTKEY */
2522 if (flags
& SORT_STRINGSORT
)
2524 SetLastError(ERROR_INVALID_FLAGS
);
2528 if (srclen
< 0) srclen
= strlenW(src
) + 1;
2530 TRACE("(0x%04x,0x%08x,%s,%d,%p,%d)\n",
2531 lcid
, flags
, debugstr_wn(src
, srclen
), srclen
, dst
, dstlen
);
2533 if (!dst
) /* return required string length */
2537 for (len
= 0; srclen
; src
++, srclen
--)
2540 /* tests show that win2k just ignores NORM_IGNORENONSPACE,
2541 * and skips white space and punctuation characters for
2542 * NORM_IGNORESYMBOLS.
2544 if ((flags
& NORM_IGNORESYMBOLS
) && (get_char_typeW(wch
) & (C1_PUNCT
| C1_SPACE
)))
2551 if (flags
& LCMAP_UPPERCASE
)
2553 for (dst_ptr
= dst
; srclen
&& dstlen
; src
++, srclen
--)
2556 if ((flags
& NORM_IGNORESYMBOLS
) && (get_char_typeW(wch
) & (C1_PUNCT
| C1_SPACE
)))
2558 *dst_ptr
++ = toupperW(wch
);
2562 else if (flags
& LCMAP_LOWERCASE
)
2564 for (dst_ptr
= dst
; srclen
&& dstlen
; src
++, srclen
--)
2567 if ((flags
& NORM_IGNORESYMBOLS
) && (get_char_typeW(wch
) & (C1_PUNCT
| C1_SPACE
)))
2569 *dst_ptr
++ = tolowerW(wch
);
2577 SetLastError(ERROR_INVALID_FLAGS
);
2580 for (dst_ptr
= dst
; srclen
&& dstlen
; src
++, srclen
--)
2583 if ((flags
& NORM_IGNORESYMBOLS
) && (get_char_typeW(wch
) & (C1_PUNCT
| C1_SPACE
)))
2592 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2596 return dst_ptr
- dst
;
2599 /*************************************************************************
2600 * LCMapStringA (KERNEL32.@)
2602 * Map characters in a locale sensitive string.
2605 * lcid [I] LCID for the conversion.
2606 * flags [I] Flags controlling the mapping (LCMAP_ constants from "winnls.h").
2607 * src [I] String to map
2608 * srclen [I] Length of src in chars, or -1 if src is NUL terminated
2609 * dst [O] Destination for mapped string
2610 * dstlen [I] Length of dst in characters
2613 * Success: The length of the mapped string in dst, including the NUL terminator.
2614 * Failure: 0. Use GetLastError() to determine the cause.
2616 INT WINAPI
LCMapStringA(LCID lcid
, DWORD flags
, LPCSTR src
, INT srclen
,
2617 LPSTR dst
, INT dstlen
)
2619 WCHAR
*bufW
= NtCurrentTeb()->StaticUnicodeBuffer
;
2621 INT ret
= 0, srclenW
, dstlenW
;
2622 UINT locale_cp
= CP_ACP
;
2624 if (!src
|| !srclen
|| dstlen
< 0)
2626 SetLastError(ERROR_INVALID_PARAMETER
);
2630 if (!(flags
& LOCALE_USE_CP_ACP
)) locale_cp
= get_lcid_codepage( lcid
);
2632 srclenW
= MultiByteToWideChar(locale_cp
, 0, src
, srclen
, bufW
, 260);
2637 srclenW
= MultiByteToWideChar(locale_cp
, 0, src
, srclen
, NULL
, 0);
2638 srcW
= HeapAlloc(GetProcessHeap(), 0, srclenW
* sizeof(WCHAR
));
2641 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2644 MultiByteToWideChar(locale_cp
, 0, src
, srclen
, srcW
, srclenW
);
2647 if (flags
& LCMAP_SORTKEY
)
2651 SetLastError(ERROR_INVALID_FLAGS
);
2652 goto map_string_exit
;
2654 ret
= wine_get_sortkey(flags
, srcW
, srclenW
, dst
, dstlen
);
2656 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2659 goto map_string_exit
;
2662 if (flags
& SORT_STRINGSORT
)
2664 SetLastError(ERROR_INVALID_FLAGS
);
2665 goto map_string_exit
;
2668 dstlenW
= LCMapStringW(lcid
, flags
, srcW
, srclenW
, NULL
, 0);
2670 goto map_string_exit
;
2672 dstW
= HeapAlloc(GetProcessHeap(), 0, dstlenW
* sizeof(WCHAR
));
2675 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2676 goto map_string_exit
;
2679 LCMapStringW(lcid
, flags
, srcW
, srclenW
, dstW
, dstlenW
);
2680 ret
= WideCharToMultiByte(locale_cp
, 0, dstW
, dstlenW
, dst
, dstlen
, NULL
, NULL
);
2681 HeapFree(GetProcessHeap(), 0, dstW
);
2684 if (srcW
!= bufW
) HeapFree(GetProcessHeap(), 0, srcW
);
2688 /*************************************************************************
2689 * FoldStringA (KERNEL32.@)
2691 * Map characters in a string.
2694 * dwFlags [I] Flags controlling chars to map (MAP_ constants from "winnls.h")
2695 * src [I] String to map
2696 * srclen [I] Length of src, or -1 if src is NUL terminated
2697 * dst [O] Destination for mapped string
2698 * dstlen [I] Length of dst, or 0 to find the required length for the mapped string
2701 * Success: The length of the string written to dst, including the terminating NUL. If
2702 * dstlen is 0, the value returned is the same, but nothing is written to dst,
2703 * and dst may be NULL.
2704 * Failure: 0. Use GetLastError() to determine the cause.
2706 INT WINAPI
FoldStringA(DWORD dwFlags
, LPCSTR src
, INT srclen
,
2707 LPSTR dst
, INT dstlen
)
2709 INT ret
= 0, srclenW
= 0;
2710 WCHAR
*srcW
= NULL
, *dstW
= NULL
;
2712 if (!src
|| !srclen
|| dstlen
< 0 || (dstlen
&& !dst
) || src
== dst
)
2714 SetLastError(ERROR_INVALID_PARAMETER
);
2718 srclenW
= MultiByteToWideChar(CP_ACP
, dwFlags
& MAP_COMPOSITE
? MB_COMPOSITE
: 0,
2719 src
, srclen
, NULL
, 0);
2720 srcW
= HeapAlloc(GetProcessHeap(), 0, srclenW
* sizeof(WCHAR
));
2724 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2725 goto FoldStringA_exit
;
2728 MultiByteToWideChar(CP_ACP
, dwFlags
& MAP_COMPOSITE
? MB_COMPOSITE
: 0,
2729 src
, srclen
, srcW
, srclenW
);
2731 dwFlags
= (dwFlags
& ~MAP_PRECOMPOSED
) | MAP_FOLDCZONE
;
2733 ret
= FoldStringW(dwFlags
, srcW
, srclenW
, NULL
, 0);
2736 dstW
= HeapAlloc(GetProcessHeap(), 0, ret
* sizeof(WCHAR
));
2740 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2741 goto FoldStringA_exit
;
2744 ret
= FoldStringW(dwFlags
, srcW
, srclenW
, dstW
, ret
);
2745 if (!WideCharToMultiByte(CP_ACP
, 0, dstW
, ret
, dst
, dstlen
, NULL
, NULL
))
2748 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2752 HeapFree(GetProcessHeap(), 0, dstW
);
2755 HeapFree(GetProcessHeap(), 0, srcW
);
2759 /*************************************************************************
2760 * FoldStringW (KERNEL32.@)
2764 INT WINAPI
FoldStringW(DWORD dwFlags
, LPCWSTR src
, INT srclen
,
2765 LPWSTR dst
, INT dstlen
)
2769 switch (dwFlags
& (MAP_COMPOSITE
|MAP_PRECOMPOSED
|MAP_EXPAND_LIGATURES
))
2774 /* Fall through for dwFlags == 0 */
2775 case MAP_PRECOMPOSED
|MAP_COMPOSITE
:
2776 case MAP_PRECOMPOSED
|MAP_EXPAND_LIGATURES
:
2777 case MAP_COMPOSITE
|MAP_EXPAND_LIGATURES
:
2778 SetLastError(ERROR_INVALID_FLAGS
);
2782 if (!src
|| !srclen
|| dstlen
< 0 || (dstlen
&& !dst
) || src
== dst
)
2784 SetLastError(ERROR_INVALID_PARAMETER
);
2788 ret
= wine_fold_string(dwFlags
, src
, srclen
, dst
, dstlen
);
2790 SetLastError(ERROR_INSUFFICIENT_BUFFER
);
2794 /******************************************************************************
2795 * CompareStringW (KERNEL32.@)
2797 * See CompareStringA.
2799 INT WINAPI
CompareStringW(LCID lcid
, DWORD style
,
2800 LPCWSTR str1
, INT len1
, LPCWSTR str2
, INT len2
)
2806 SetLastError(ERROR_INVALID_PARAMETER
);
2810 if( style
& ~(NORM_IGNORECASE
|NORM_IGNORENONSPACE
|NORM_IGNORESYMBOLS
|
2811 SORT_STRINGSORT
|NORM_IGNOREKANATYPE
|NORM_IGNOREWIDTH
|LOCALE_USE_CP_ACP
|0x10000000) )
2813 SetLastError(ERROR_INVALID_FLAGS
);
2817 /* this style is related to diacritics in Arabic, Japanese, and Hebrew */
2818 if (style
& 0x10000000)
2819 WARN("Ignoring unknown style 0x10000000\n");
2821 if (len1
< 0) len1
= strlenW(str1
);
2822 if (len2
< 0) len2
= strlenW(str2
);
2824 ret
= wine_compare_string(style
, str1
, len1
, str2
, len2
);
2826 if (ret
) /* need to translate result */
2827 return (ret
< 0) ? CSTR_LESS_THAN
: CSTR_GREATER_THAN
;
2831 /******************************************************************************
2832 * CompareStringA (KERNEL32.@)
2834 * Compare two locale sensitive strings.
2837 * lcid [I] LCID for the comparison
2838 * style [I] Flags for the comparison (NORM_ constants from "winnls.h").
2839 * str1 [I] First string to compare
2840 * len1 [I] Length of str1, or -1 if str1 is NUL terminated
2841 * str2 [I] Second string to compare
2842 * len2 [I] Length of str2, or -1 if str2 is NUL terminated
2845 * Success: CSTR_LESS_THAN, CSTR_EQUAL or CSTR_GREATER_THAN depending on whether
2846 * str2 is less than, equal to or greater than str1 respectively.
2847 * Failure: FALSE. Use GetLastError() to determine the cause.
2849 INT WINAPI
CompareStringA(LCID lcid
, DWORD style
,
2850 LPCSTR str1
, INT len1
, LPCSTR str2
, INT len2
)
2852 WCHAR
*buf1W
= NtCurrentTeb()->StaticUnicodeBuffer
;
2853 WCHAR
*buf2W
= buf1W
+ 130;
2854 LPWSTR str1W
, str2W
;
2855 INT len1W
, len2W
, ret
;
2856 UINT locale_cp
= CP_ACP
;
2860 SetLastError(ERROR_INVALID_PARAMETER
);
2863 if (len1
< 0) len1
= strlen(str1
);
2864 if (len2
< 0) len2
= strlen(str2
);
2866 if (!(style
& LOCALE_USE_CP_ACP
)) locale_cp
= get_lcid_codepage( lcid
);
2868 len1W
= MultiByteToWideChar(locale_cp
, 0, str1
, len1
, buf1W
, 130);
2873 len1W
= MultiByteToWideChar(locale_cp
, 0, str1
, len1
, NULL
, 0);
2874 str1W
= HeapAlloc(GetProcessHeap(), 0, len1W
* sizeof(WCHAR
));
2877 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2880 MultiByteToWideChar(locale_cp
, 0, str1
, len1
, str1W
, len1W
);
2882 len2W
= MultiByteToWideChar(locale_cp
, 0, str2
, len2
, buf2W
, 130);
2887 len2W
= MultiByteToWideChar(locale_cp
, 0, str2
, len2
, NULL
, 0);
2888 str2W
= HeapAlloc(GetProcessHeap(), 0, len2W
* sizeof(WCHAR
));
2891 if (str1W
!= buf1W
) HeapFree(GetProcessHeap(), 0, str1W
);
2892 SetLastError(ERROR_NOT_ENOUGH_MEMORY
);
2895 MultiByteToWideChar(locale_cp
, 0, str2
, len2
, str2W
, len2W
);
2898 ret
= CompareStringW(lcid
, style
, str1W
, len1W
, str2W
, len2W
);
2900 if (str1W
!= buf1W
) HeapFree(GetProcessHeap(), 0, str1W
);
2901 if (str2W
!= buf2W
) HeapFree(GetProcessHeap(), 0, str2W
);
2905 /*************************************************************************
2906 * lstrcmp (KERNEL32.@)
2907 * lstrcmpA (KERNEL32.@)
2909 * Compare two strings using the current thread locale.
2912 * str1 [I] First string to compare
2913 * str2 [I] Second string to compare
2916 * Success: A number less than, equal to or greater than 0 depending on whether
2917 * str2 is less than, equal to or greater than str1 respectively.
2918 * Failure: FALSE. Use GetLastError() to determine the cause.
2920 int WINAPI
lstrcmpA(LPCSTR str1
, LPCSTR str2
)
2924 if ((str1
== NULL
) && (str2
== NULL
)) return 0;
2925 if (str1
== NULL
) return -1;
2926 if (str2
== NULL
) return 1;
2928 ret
= CompareStringA(GetThreadLocale(), LOCALE_USE_CP_ACP
, str1
, -1, str2
, -1);
2934 /*************************************************************************
2935 * lstrcmpi (KERNEL32.@)
2936 * lstrcmpiA (KERNEL32.@)
2938 * Compare two strings using the current thread locale, ignoring case.
2941 * str1 [I] First string to compare
2942 * str2 [I] Second string to compare
2945 * Success: A number less than, equal to or greater than 0 depending on whether
2946 * str2 is less than, equal to or greater than str1 respectively.
2947 * Failure: FALSE. Use GetLastError() to determine the cause.
2949 int WINAPI
lstrcmpiA(LPCSTR str1
, LPCSTR str2
)
2953 if ((str1
== NULL
) && (str2
== NULL
)) return 0;
2954 if (str1
== NULL
) return -1;
2955 if (str2
== NULL
) return 1;
2957 ret
= CompareStringA(GetThreadLocale(), NORM_IGNORECASE
|LOCALE_USE_CP_ACP
, str1
, -1, str2
, -1);
2963 /*************************************************************************
2964 * lstrcmpW (KERNEL32.@)
2968 int WINAPI
lstrcmpW(LPCWSTR str1
, LPCWSTR str2
)
2972 if ((str1
== NULL
) && (str2
== NULL
)) return 0;
2973 if (str1
== NULL
) return -1;
2974 if (str2
== NULL
) return 1;
2976 ret
= CompareStringW(GetThreadLocale(), 0, str1
, -1, str2
, -1);
2982 /*************************************************************************
2983 * lstrcmpiW (KERNEL32.@)
2987 int WINAPI
lstrcmpiW(LPCWSTR str1
, LPCWSTR str2
)
2991 if ((str1
== NULL
) && (str2
== NULL
)) return 0;
2992 if (str1
== NULL
) return -1;
2993 if (str2
== NULL
) return 1;
2995 ret
= CompareStringW(GetThreadLocale(), NORM_IGNORECASE
, str1
, -1, str2
, -1);
3001 /******************************************************************************
3004 void LOCALE_Init(void)
3006 extern void CDECL
__wine_init_codepages( const union cptable
*ansi_cp
, const union cptable
*oem_cp
,
3007 const union cptable
*unix_cp
);
3009 UINT ansi_cp
= 1252, oem_cp
= 437, mac_cp
= 10000, unix_cp
;
3012 /* MacOS doesn't set the locale environment variables so we have to do it ourselves */
3013 char user_locale
[50];
3015 CFLocaleRef user_locale_ref
= CFLocaleCopyCurrent();
3016 CFStringRef user_locale_lang_ref
= CFLocaleGetValue( user_locale_ref
, kCFLocaleLanguageCode
);
3017 CFStringRef user_locale_country_ref
= CFLocaleGetValue( user_locale_ref
, kCFLocaleCountryCode
);
3018 CFStringRef user_locale_string_ref
;
3020 if (user_locale_country_ref
)
3022 user_locale_string_ref
= CFStringCreateWithFormat(NULL
, NULL
, CFSTR("%@_%@.UTF-8"),
3023 user_locale_lang_ref
, user_locale_country_ref
);
3027 user_locale_string_ref
= CFStringCreateWithFormat(NULL
, NULL
, CFSTR("%@.UTF-8"),
3028 user_locale_lang_ref
);
3031 CFStringGetCString( user_locale_string_ref
, user_locale
, sizeof(user_locale
), kCFStringEncodingUTF8
);
3033 unix_cp
= CP_UTF8
; /* default to utf-8 even if we don't get a valid locale */
3034 setenv( "LANG", user_locale
, 0 );
3035 TRACE( "setting locale to '%s'\n", user_locale
);
3036 #endif /* __APPLE__ */
3038 setlocale( LC_ALL
, "" );
3040 unix_cp
= setup_unix_locales();
3041 if (!lcid_LC_MESSAGES
) lcid_LC_MESSAGES
= lcid_LC_CTYPE
;
3044 /* Override lcid_LC_MESSAGES with user's preferred language if LC_MESSAGES is set to default */
3045 if (!getenv("LC_ALL") && !getenv("LC_MESSAGES"))
3047 /* Retrieve the preferred language as chosen in System Preferences. */
3048 /* If language is a less specific variant of locale (e.g. 'en' vs. 'en_US'),
3050 CFArrayRef all_locales
= CFLocaleCopyAvailableLocaleIdentifiers();
3051 CFArrayRef preferred_locales
= CFBundleCopyLocalizationsForPreferences( all_locales
, NULL
);
3052 CFStringRef user_language_string_ref
;
3053 if (preferred_locales
&& CFArrayGetCount( preferred_locales
) &&
3054 (user_language_string_ref
= CFArrayGetValueAtIndex( preferred_locales
, 0 )) &&
3055 !CFEqual(user_language_string_ref
, user_locale_lang_ref
))
3057 struct locale_name locale_name
;
3059 CFStringGetCString( user_language_string_ref
, user_locale
, sizeof(user_locale
), kCFStringEncodingUTF8
);
3060 strcpynAtoW( buffer
, user_locale
, sizeof(buffer
)/sizeof(WCHAR
) );
3061 parse_locale_name( buffer
, &locale_name
);
3062 lcid_LC_MESSAGES
= locale_name
.lcid
;
3063 TRACE( "setting lcid_LC_MESSAGES to '%s'\n", user_locale
);
3065 CFRelease( all_locales
);
3066 if (preferred_locales
)
3067 CFRelease( preferred_locales
);
3070 CFRelease( user_locale_ref
);
3071 CFRelease( user_locale_string_ref
);
3074 NtSetDefaultUILanguage( LANGIDFROMLCID(lcid_LC_MESSAGES
) );
3075 NtSetDefaultLocale( TRUE
, lcid_LC_MESSAGES
);
3076 NtSetDefaultLocale( FALSE
, lcid_LC_CTYPE
);
3078 ansi_cp
= get_lcid_codepage( LOCALE_USER_DEFAULT
);
3079 GetLocaleInfoW( LOCALE_USER_DEFAULT
, LOCALE_IDEFAULTMACCODEPAGE
| LOCALE_RETURN_NUMBER
,
3080 (LPWSTR
)&mac_cp
, sizeof(mac_cp
)/sizeof(WCHAR
) );
3081 GetLocaleInfoW( LOCALE_USER_DEFAULT
, LOCALE_IDEFAULTCODEPAGE
| LOCALE_RETURN_NUMBER
,
3082 (LPWSTR
)&oem_cp
, sizeof(oem_cp
)/sizeof(WCHAR
) );
3084 GetLocaleInfoW( LOCALE_USER_DEFAULT
, LOCALE_IDEFAULTUNIXCODEPAGE
| LOCALE_RETURN_NUMBER
,
3085 (LPWSTR
)&unix_cp
, sizeof(unix_cp
)/sizeof(WCHAR
) );
3087 if (!(ansi_cptable
= wine_cp_get_table( ansi_cp
)))
3088 ansi_cptable
= wine_cp_get_table( 1252 );
3089 if (!(oem_cptable
= wine_cp_get_table( oem_cp
)))
3090 oem_cptable
= wine_cp_get_table( 437 );
3091 if (!(mac_cptable
= wine_cp_get_table( mac_cp
)))
3092 mac_cptable
= wine_cp_get_table( 10000 );
3093 if (unix_cp
!= CP_UTF8
)
3095 if (!(unix_cptable
= wine_cp_get_table( unix_cp
)))
3096 unix_cptable
= wine_cp_get_table( 28591 );
3099 __wine_init_codepages( ansi_cptable
, oem_cptable
, unix_cptable
);
3101 TRACE( "ansi=%03d oem=%03d mac=%03d unix=%03d\n",
3102 ansi_cptable
->info
.codepage
, oem_cptable
->info
.codepage
,
3103 mac_cptable
->info
.codepage
, unix_cp
);
3105 setlocale(LC_NUMERIC
, "C"); /* FIXME: oleaut32 depends on this */
3108 static HANDLE
NLS_RegOpenKey(HANDLE hRootKey
, LPCWSTR szKeyName
)
3110 UNICODE_STRING keyName
;
3111 OBJECT_ATTRIBUTES attr
;
3114 RtlInitUnicodeString( &keyName
, szKeyName
);
3115 InitializeObjectAttributes(&attr
, &keyName
, 0, hRootKey
, NULL
);
3117 if (NtOpenKey( &hkey
, KEY_READ
, &attr
) != STATUS_SUCCESS
)
3123 static BOOL
NLS_RegEnumSubKey(HANDLE hKey
, UINT ulIndex
, LPWSTR szKeyName
,
3127 KEY_BASIC_INFORMATION
*info
= (KEY_BASIC_INFORMATION
*)buffer
;
3130 if (NtEnumerateKey( hKey
, ulIndex
, KeyBasicInformation
, buffer
,
3131 sizeof(buffer
), &dwLen
) != STATUS_SUCCESS
||
3132 info
->NameLength
> keyNameSize
)
3137 TRACE("info->Name %s info->NameLength %d\n", debugstr_w(info
->Name
), info
->NameLength
);
3139 memcpy( szKeyName
, info
->Name
, info
->NameLength
);
3140 szKeyName
[info
->NameLength
/ sizeof(WCHAR
)] = '\0';
3142 TRACE("returning %s\n", debugstr_w(szKeyName
));
3146 static BOOL
NLS_RegEnumValue(HANDLE hKey
, UINT ulIndex
,
3147 LPWSTR szValueName
, ULONG valueNameSize
,
3148 LPWSTR szValueData
, ULONG valueDataSize
)
3151 KEY_VALUE_FULL_INFORMATION
*info
= (KEY_VALUE_FULL_INFORMATION
*)buffer
;
3154 if (NtEnumerateValueKey( hKey
, ulIndex
, KeyValueFullInformation
,
3155 buffer
, sizeof(buffer
), &dwLen
) != STATUS_SUCCESS
||
3156 info
->NameLength
> valueNameSize
||
3157 info
->DataLength
> valueDataSize
)
3162 TRACE("info->Name %s info->DataLength %d\n", debugstr_w(info
->Name
), info
->DataLength
);
3164 memcpy( szValueName
, info
->Name
, info
->NameLength
);
3165 szValueName
[info
->NameLength
/ sizeof(WCHAR
)] = '\0';
3166 memcpy( szValueData
, buffer
+ info
->DataOffset
, info
->DataLength
);
3167 szValueData
[info
->DataLength
/ sizeof(WCHAR
)] = '\0';
3169 TRACE("returning %s %s\n", debugstr_w(szValueName
), debugstr_w(szValueData
));
3173 static BOOL
NLS_RegGetDword(HANDLE hKey
, LPCWSTR szValueName
, DWORD
*lpVal
)
3176 const KEY_VALUE_PARTIAL_INFORMATION
*info
= (KEY_VALUE_PARTIAL_INFORMATION
*)buffer
;
3177 DWORD dwSize
= sizeof(buffer
);
3178 UNICODE_STRING valueName
;
3180 RtlInitUnicodeString( &valueName
, szValueName
);
3182 TRACE("%p, %s\n", hKey
, debugstr_w(szValueName
));
3183 if (NtQueryValueKey( hKey
, &valueName
, KeyValuePartialInformation
,
3184 buffer
, dwSize
, &dwSize
) == STATUS_SUCCESS
&&
3185 info
->DataLength
== sizeof(DWORD
))
3187 memcpy(lpVal
, info
->Data
, sizeof(DWORD
));
3194 static BOOL
NLS_GetLanguageGroupName(LGRPID lgrpid
, LPWSTR szName
, ULONG nameSize
)
3197 LPCWSTR szResourceName
= MAKEINTRESOURCEW(((lgrpid
+ 0x2000) >> 4) + 1);
3201 /* FIXME: Is it correct to use the system default langid? */
3202 langId
= GetSystemDefaultLangID();
3204 if (SUBLANGID(langId
) == SUBLANG_NEUTRAL
)
3205 langId
= MAKELANGID( PRIMARYLANGID(langId
), SUBLANG_DEFAULT
);
3207 hResource
= FindResourceExW( kernel32_handle
, (LPWSTR
)RT_STRING
, szResourceName
, langId
);
3211 HGLOBAL hResDir
= LoadResource( kernel32_handle
, hResource
);
3215 ULONG iResourceIndex
= lgrpid
& 0xf;
3216 LPCWSTR lpResEntry
= LockResource( hResDir
);
3219 for (i
= 0; i
< iResourceIndex
; i
++)
3220 lpResEntry
+= *lpResEntry
+ 1;
3222 if (*lpResEntry
< nameSize
)
3224 memcpy( szName
, lpResEntry
+ 1, *lpResEntry
* sizeof(WCHAR
) );
3225 szName
[*lpResEntry
] = '\0';
3230 FreeResource( hResource
);
3235 /* Registry keys for NLS related information */
3237 static const WCHAR szCountryListName
[] = {
3238 'M','a','c','h','i','n','e','\\','S','o','f','t','w','a','r','e','\\',
3239 'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\',
3240 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
3241 'T','e','l','e','p','h','o','n','y','\\',
3242 'C','o','u','n','t','r','y',' ','L','i','s','t','\0'
3246 /* Callback function ptrs for EnumSystemLanguageGroupsA/W */
3249 LANGUAGEGROUP_ENUMPROCA procA
;
3250 LANGUAGEGROUP_ENUMPROCW procW
;
3253 } ENUMLANGUAGEGROUP_CALLBACKS
;
3255 /* Internal implementation of EnumSystemLanguageGroupsA/W */
3256 static BOOL
NLS_EnumSystemLanguageGroups(ENUMLANGUAGEGROUP_CALLBACKS
*lpProcs
)
3258 WCHAR szNumber
[10], szValue
[4];
3260 BOOL bContinue
= TRUE
;
3265 SetLastError(ERROR_INVALID_PARAMETER
);
3269 switch (lpProcs
->dwFlags
)
3272 /* Default to LGRPID_INSTALLED */
3273 lpProcs
->dwFlags
= LGRPID_INSTALLED
;
3274 /* Fall through... */
3275 case LGRPID_INSTALLED
:
3276 case LGRPID_SUPPORTED
:
3279 SetLastError(ERROR_INVALID_FLAGS
);
3283 hKey
= NLS_RegOpenKey( 0, szLangGroupsKeyName
);
3286 FIXME("NLS registry key not found. Please apply the default registry file 'wine.inf'\n");
3290 if (NLS_RegEnumValue( hKey
, ulIndex
, szNumber
, sizeof(szNumber
),
3291 szValue
, sizeof(szValue
) ))
3293 BOOL bInstalled
= szValue
[0] == '1' ? TRUE
: FALSE
;
3294 LGRPID lgrpid
= strtoulW( szNumber
, NULL
, 16 );
3296 TRACE("grpid %s (%sinstalled)\n", debugstr_w(szNumber
),
3297 bInstalled
? "" : "not ");
3299 if (lpProcs
->dwFlags
== LGRPID_SUPPORTED
|| bInstalled
)
3301 WCHAR szGrpName
[48];
3303 if (!NLS_GetLanguageGroupName( lgrpid
, szGrpName
, sizeof(szGrpName
) / sizeof(WCHAR
) ))
3304 szGrpName
[0] = '\0';
3307 bContinue
= lpProcs
->procW( lgrpid
, szNumber
, szGrpName
, lpProcs
->dwFlags
,
3311 char szNumberA
[sizeof(szNumber
)/sizeof(WCHAR
)];
3312 char szGrpNameA
[48];
3314 /* FIXME: MSDN doesn't say which code page the W->A translation uses,
3315 * or whether the language names are ever localised. Assume CP_ACP.
3318 WideCharToMultiByte(CP_ACP
, 0, szNumber
, -1, szNumberA
, sizeof(szNumberA
), 0, 0);
3319 WideCharToMultiByte(CP_ACP
, 0, szGrpName
, -1, szGrpNameA
, sizeof(szGrpNameA
), 0, 0);
3321 bContinue
= lpProcs
->procA( lgrpid
, szNumberA
, szGrpNameA
, lpProcs
->dwFlags
,
3341 /******************************************************************************
3342 * EnumSystemLanguageGroupsA (KERNEL32.@)
3344 * Call a users function for each language group available on the system.
3347 * pLangGrpEnumProc [I] Callback function to call for each language group
3348 * dwFlags [I] LGRPID_SUPPORTED=All Supported, LGRPID_INSTALLED=Installed only
3349 * lParam [I] User parameter to pass to pLangGrpEnumProc
3353 * Failure: FALSE. Use GetLastError() to determine the cause.
3355 BOOL WINAPI
EnumSystemLanguageGroupsA(LANGUAGEGROUP_ENUMPROCA pLangGrpEnumProc
,
3356 DWORD dwFlags
, LONG_PTR lParam
)
3358 ENUMLANGUAGEGROUP_CALLBACKS procs
;
3360 TRACE("(%p,0x%08X,0x%08lX)\n", pLangGrpEnumProc
, dwFlags
, lParam
);
3362 procs
.procA
= pLangGrpEnumProc
;
3364 procs
.dwFlags
= dwFlags
;
3365 procs
.lParam
= lParam
;
3367 return NLS_EnumSystemLanguageGroups( pLangGrpEnumProc
? &procs
: NULL
);
3370 /******************************************************************************
3371 * EnumSystemLanguageGroupsW (KERNEL32.@)
3373 * See EnumSystemLanguageGroupsA.
3375 BOOL WINAPI
EnumSystemLanguageGroupsW(LANGUAGEGROUP_ENUMPROCW pLangGrpEnumProc
,
3376 DWORD dwFlags
, LONG_PTR lParam
)
3378 ENUMLANGUAGEGROUP_CALLBACKS procs
;
3380 TRACE("(%p,0x%08X,0x%08lX)\n", pLangGrpEnumProc
, dwFlags
, lParam
);
3383 procs
.procW
= pLangGrpEnumProc
;
3384 procs
.dwFlags
= dwFlags
;
3385 procs
.lParam
= lParam
;
3387 return NLS_EnumSystemLanguageGroups( pLangGrpEnumProc
? &procs
: NULL
);
3390 /******************************************************************************
3391 * IsValidLanguageGroup (KERNEL32.@)
3393 * Determine if a language group is supported and/or installed.
3396 * lgrpid [I] Language Group Id (LGRPID_ values from "winnls.h")
3397 * dwFlags [I] LGRPID_SUPPORTED=Supported, LGRPID_INSTALLED=Installed
3400 * TRUE, if lgrpid is supported and/or installed, according to dwFlags.
3403 BOOL WINAPI
IsValidLanguageGroup(LGRPID lgrpid
, DWORD dwFlags
)
3405 static const WCHAR szFormat
[] = { '%','x','\0' };
3406 WCHAR szValueName
[16], szValue
[2];
3407 BOOL bSupported
= FALSE
, bInstalled
= FALSE
;
3413 case LGRPID_INSTALLED
:
3414 case LGRPID_SUPPORTED
:
3416 hKey
= NLS_RegOpenKey( 0, szLangGroupsKeyName
);
3418 sprintfW( szValueName
, szFormat
, lgrpid
);
3420 if (NLS_RegGetDword( hKey
, szValueName
, (LPDWORD
)szValue
))
3424 if (szValue
[0] == '1')
3434 if ((dwFlags
== LGRPID_SUPPORTED
&& bSupported
) ||
3435 (dwFlags
== LGRPID_INSTALLED
&& bInstalled
))
3441 /* Callback function ptrs for EnumLanguageGrouplocalesA/W */
3444 LANGGROUPLOCALE_ENUMPROCA procA
;
3445 LANGGROUPLOCALE_ENUMPROCW procW
;
3449 } ENUMLANGUAGEGROUPLOCALE_CALLBACKS
;
3451 /* Internal implementation of EnumLanguageGrouplocalesA/W */
3452 static BOOL
NLS_EnumLanguageGroupLocales(ENUMLANGUAGEGROUPLOCALE_CALLBACKS
*lpProcs
)
3454 static const WCHAR szAlternateSortsKeyName
[] = {
3455 'A','l','t','e','r','n','a','t','e',' ','S','o','r','t','s','\0'
3457 WCHAR szNumber
[10], szValue
[4];
3459 BOOL bContinue
= TRUE
, bAlternate
= FALSE
;
3461 ULONG ulIndex
= 1; /* Ignore default entry of 1st key */
3463 if (!lpProcs
|| !lpProcs
->lgrpid
|| lpProcs
->lgrpid
> LGRPID_ARMENIAN
)
3465 SetLastError(ERROR_INVALID_PARAMETER
);
3469 if (lpProcs
->dwFlags
)
3471 SetLastError(ERROR_INVALID_FLAGS
);
3475 hKey
= NLS_RegOpenKey( 0, szLocaleKeyName
);
3478 WARN("NLS registry key not found. Please apply the default registry file 'wine.inf'\n");
3482 if (NLS_RegEnumValue( hKey
, ulIndex
, szNumber
, sizeof(szNumber
),
3483 szValue
, sizeof(szValue
) ))
3485 lgrpid
= strtoulW( szValue
, NULL
, 16 );
3487 TRACE("lcid %s, grpid %d (%smatched)\n", debugstr_w(szNumber
),
3488 lgrpid
, lgrpid
== lpProcs
->lgrpid
? "" : "not ");
3490 if (lgrpid
== lpProcs
->lgrpid
)
3494 lcid
= strtoulW( szNumber
, NULL
, 16 );
3496 /* FIXME: native returns extra text for a few (17/150) locales, e.g:
3497 * '00000437 ;Georgian'
3498 * At present we only pass the LCID string.
3502 bContinue
= lpProcs
->procW( lgrpid
, lcid
, szNumber
, lpProcs
->lParam
);
3505 char szNumberA
[sizeof(szNumber
)/sizeof(WCHAR
)];
3507 WideCharToMultiByte(CP_ACP
, 0, szNumber
, -1, szNumberA
, sizeof(szNumberA
), 0, 0);
3509 bContinue
= lpProcs
->procA( lgrpid
, lcid
, szNumberA
, lpProcs
->lParam
);
3517 /* Finished enumerating this key */
3520 /* Enumerate alternate sorts also */
3521 hKey
= NLS_RegOpenKey( hKey
, szAlternateSortsKeyName
);
3526 bContinue
= FALSE
; /* Finished both keys */
3539 /******************************************************************************
3540 * EnumLanguageGroupLocalesA (KERNEL32.@)
3542 * Call a users function for every locale in a language group available on the system.
3545 * pLangGrpLcEnumProc [I] Callback function to call for each locale
3546 * lgrpid [I] Language group (LGRPID_ values from "winnls.h")
3547 * dwFlags [I] Reserved, set to 0
3548 * lParam [I] User parameter to pass to pLangGrpLcEnumProc
3552 * Failure: FALSE. Use GetLastError() to determine the cause.
3554 BOOL WINAPI
EnumLanguageGroupLocalesA(LANGGROUPLOCALE_ENUMPROCA pLangGrpLcEnumProc
,
3555 LGRPID lgrpid
, DWORD dwFlags
, LONG_PTR lParam
)
3557 ENUMLANGUAGEGROUPLOCALE_CALLBACKS callbacks
;
3559 TRACE("(%p,0x%08X,0x%08X,0x%08lX)\n", pLangGrpLcEnumProc
, lgrpid
, dwFlags
, lParam
);
3561 callbacks
.procA
= pLangGrpLcEnumProc
;
3562 callbacks
.procW
= NULL
;
3563 callbacks
.dwFlags
= dwFlags
;
3564 callbacks
.lgrpid
= lgrpid
;
3565 callbacks
.lParam
= lParam
;
3567 return NLS_EnumLanguageGroupLocales( pLangGrpLcEnumProc
? &callbacks
: NULL
);
3570 /******************************************************************************
3571 * EnumLanguageGroupLocalesW (KERNEL32.@)
3573 * See EnumLanguageGroupLocalesA.
3575 BOOL WINAPI
EnumLanguageGroupLocalesW(LANGGROUPLOCALE_ENUMPROCW pLangGrpLcEnumProc
,
3576 LGRPID lgrpid
, DWORD dwFlags
, LONG_PTR lParam
)
3578 ENUMLANGUAGEGROUPLOCALE_CALLBACKS callbacks
;
3580 TRACE("(%p,0x%08X,0x%08X,0x%08lX)\n", pLangGrpLcEnumProc
, lgrpid
, dwFlags
, lParam
);
3582 callbacks
.procA
= NULL
;
3583 callbacks
.procW
= pLangGrpLcEnumProc
;
3584 callbacks
.dwFlags
= dwFlags
;
3585 callbacks
.lgrpid
= lgrpid
;
3586 callbacks
.lParam
= lParam
;
3588 return NLS_EnumLanguageGroupLocales( pLangGrpLcEnumProc
? &callbacks
: NULL
);
3591 /******************************************************************************
3592 * EnumSystemGeoID (KERNEL32.@)
3594 * Call a users function for every location available on the system.
3597 * geoclass [I] Type of information desired (SYSGEOTYPE enum from "winnls.h")
3598 * reserved [I] Reserved, set to 0
3599 * pGeoEnumProc [I] Callback function to call for each location
3603 * Failure: FALSE. Use GetLastError() to determine the cause.
3605 BOOL WINAPI
EnumSystemGeoID(GEOCLASS geoclass
, GEOID reserved
, GEO_ENUMPROC pGeoEnumProc
)
3607 static const WCHAR szCountryCodeValueName
[] = {
3608 'C','o','u','n','t','r','y','C','o','d','e','\0'
3614 TRACE("(0x%08X,0x%08X,%p)\n", geoclass
, reserved
, pGeoEnumProc
);
3616 if (geoclass
!= GEOCLASS_NATION
|| reserved
|| !pGeoEnumProc
)
3618 SetLastError(ERROR_INVALID_PARAMETER
);
3622 hKey
= NLS_RegOpenKey( 0, szCountryListName
);
3624 while (NLS_RegEnumSubKey( hKey
, ulIndex
, szNumber
, sizeof(szNumber
) ))
3626 BOOL bContinue
= TRUE
;
3628 HANDLE hSubKey
= NLS_RegOpenKey( hKey
, szNumber
);
3632 if (NLS_RegGetDword( hSubKey
, szCountryCodeValueName
, &dwGeoId
))
3634 TRACE("Got geoid %d\n", dwGeoId
);
3636 if (!pGeoEnumProc( dwGeoId
))
3655 /******************************************************************************
3656 * InvalidateNLSCache (KERNEL32.@)
3658 * Invalidate the cache of NLS values.
3667 BOOL WINAPI
InvalidateNLSCache(void)
3673 /******************************************************************************
3674 * GetUserGeoID (KERNEL32.@)
3676 GEOID WINAPI
GetUserGeoID( GEOCLASS GeoClass
)
3678 GEOID ret
= GEOID_NOT_AVAILABLE
;
3679 static const WCHAR geoW
[] = {'G','e','o',0};
3680 static const WCHAR nationW
[] = {'N','a','t','i','o','n',0};
3681 WCHAR bufferW
[40], *end
;
3683 HANDLE hkey
, hSubkey
= 0;
3684 UNICODE_STRING keyW
;
3685 const KEY_VALUE_PARTIAL_INFORMATION
*info
= (KEY_VALUE_PARTIAL_INFORMATION
*)bufferW
;
3686 RtlInitUnicodeString( &keyW
, nationW
);
3687 count
= sizeof(bufferW
);
3689 if(!(hkey
= create_registry_key())) return ret
;
3692 case GEOCLASS_NATION
:
3693 if ((hSubkey
= NLS_RegOpenKey(hkey
, geoW
)))
3695 if((NtQueryValueKey(hSubkey
, &keyW
, KeyValuePartialInformation
,
3696 bufferW
, count
, &count
) == STATUS_SUCCESS
) && info
->DataLength
)
3697 ret
= strtolW((LPCWSTR
)info
->Data
, &end
, 10);
3700 case GEOCLASS_REGION
:
3701 FIXME("GEOCLASS_REGION not handled yet\n");
3706 if (hSubkey
) NtClose(hSubkey
);
3710 /******************************************************************************
3711 * SetUserGeoID (KERNEL32.@)
3713 BOOL WINAPI
SetUserGeoID( GEOID GeoID
)
3715 static const WCHAR geoW
[] = {'G','e','o',0};
3716 static const WCHAR nationW
[] = {'N','a','t','i','o','n',0};
3717 static const WCHAR formatW
[] = {'%','i',0};
3718 UNICODE_STRING nameW
,keyW
;
3720 OBJECT_ATTRIBUTES attr
;
3723 if(!(hkey
= create_registry_key())) return FALSE
;
3725 attr
.Length
= sizeof(attr
);
3726 attr
.RootDirectory
= hkey
;
3727 attr
.ObjectName
= &nameW
;
3728 attr
.Attributes
= 0;
3729 attr
.SecurityDescriptor
= NULL
;
3730 attr
.SecurityQualityOfService
= NULL
;
3731 RtlInitUnicodeString( &nameW
, geoW
);
3732 RtlInitUnicodeString( &keyW
, nationW
);
3734 if (NtCreateKey( &hkey
, KEY_ALL_ACCESS
, &attr
, 0, NULL
, 0, NULL
) != STATUS_SUCCESS
)
3737 NtClose(attr
.RootDirectory
);
3741 sprintfW(bufferW
, formatW
, GeoID
);
3742 NtSetValueKey(hkey
, &keyW
, 0, REG_SZ
, bufferW
, (strlenW(bufferW
) + 1) * sizeof(WCHAR
));
3743 NtClose(attr
.RootDirectory
);
3752 UILANGUAGE_ENUMPROCA procA
;
3753 UILANGUAGE_ENUMPROCW procW
;
3757 } ENUM_UILANG_CALLBACK
;
3759 static BOOL CALLBACK
enum_uilang_proc_a( HMODULE hModule
, LPCSTR type
,
3760 LPCSTR name
, WORD LangID
, LONG_PTR lParam
)
3762 ENUM_UILANG_CALLBACK
*enum_uilang
= (ENUM_UILANG_CALLBACK
*)lParam
;
3765 sprintf(buf
, "%08x", (UINT
)LangID
);
3766 return enum_uilang
->u
.procA( buf
, enum_uilang
->param
);
3769 static BOOL CALLBACK
enum_uilang_proc_w( HMODULE hModule
, LPCWSTR type
,
3770 LPCWSTR name
, WORD LangID
, LONG_PTR lParam
)
3772 static const WCHAR formatW
[] = {'%','0','8','x',0};
3773 ENUM_UILANG_CALLBACK
*enum_uilang
= (ENUM_UILANG_CALLBACK
*)lParam
;
3776 sprintfW( buf
, formatW
, (UINT
)LangID
);
3777 return enum_uilang
->u
.procW( buf
, enum_uilang
->param
);
3780 /******************************************************************************
3781 * EnumUILanguagesA (KERNEL32.@)
3783 BOOL WINAPI
EnumUILanguagesA(UILANGUAGE_ENUMPROCA pUILangEnumProc
, DWORD dwFlags
, LONG_PTR lParam
)
3785 ENUM_UILANG_CALLBACK enum_uilang
;
3787 TRACE("%p, %x, %lx\n", pUILangEnumProc
, dwFlags
, lParam
);
3789 if(!pUILangEnumProc
) {
3790 SetLastError(ERROR_INVALID_PARAMETER
);
3794 SetLastError(ERROR_INVALID_FLAGS
);
3798 enum_uilang
.u
.procA
= pUILangEnumProc
;
3799 enum_uilang
.flags
= dwFlags
;
3800 enum_uilang
.param
= lParam
;
3802 EnumResourceLanguagesA( kernel32_handle
, (LPCSTR
)RT_STRING
,
3803 (LPCSTR
)LOCALE_ILANGUAGE
, enum_uilang_proc_a
,
3804 (LONG_PTR
)&enum_uilang
);
3808 /******************************************************************************
3809 * EnumUILanguagesW (KERNEL32.@)
3811 BOOL WINAPI
EnumUILanguagesW(UILANGUAGE_ENUMPROCW pUILangEnumProc
, DWORD dwFlags
, LONG_PTR lParam
)
3813 ENUM_UILANG_CALLBACK enum_uilang
;
3815 TRACE("%p, %x, %lx\n", pUILangEnumProc
, dwFlags
, lParam
);
3818 if(!pUILangEnumProc
) {
3819 SetLastError(ERROR_INVALID_PARAMETER
);
3823 SetLastError(ERROR_INVALID_FLAGS
);
3827 enum_uilang
.u
.procW
= pUILangEnumProc
;
3828 enum_uilang
.flags
= dwFlags
;
3829 enum_uilang
.param
= lParam
;
3831 EnumResourceLanguagesW( kernel32_handle
, (LPCWSTR
)RT_STRING
,
3832 (LPCWSTR
)LOCALE_ILANGUAGE
, enum_uilang_proc_w
,
3833 (LONG_PTR
)&enum_uilang
);
3837 INT WINAPI
GetGeoInfoW(GEOID GeoId
, GEOTYPE GeoType
, LPWSTR lpGeoData
,
3838 int cchData
, LANGID language
)
3840 FIXME("%d %d %p %d %d\n", GeoId
, GeoType
, lpGeoData
, cchData
, language
);
3844 INT WINAPI
GetGeoInfoA(GEOID GeoId
, GEOTYPE GeoType
, LPSTR lpGeoData
,
3845 int cchData
, LANGID language
)
3847 FIXME("%d %d %p %d %d\n", GeoId
, GeoType
, lpGeoData
, cchData
, language
);
3851 INT WINAPI
GetUserDefaultLocaleName(LPWSTR localename
, int buffersize
)
3855 TRACE("%p, %d\n", localename
, buffersize
);
3857 userlcid
= GetUserDefaultLCID();
3858 return LCIDToLocaleName(userlcid
, localename
, buffersize
, 0);
3861 /******************************************************************************
3862 * NormalizeString (KERNEL32.@)
3864 INT WINAPI
NormalizeString(NORM_FORM NormForm
, LPCWSTR lpSrcString
, INT cwSrcLength
,
3865 LPWSTR lpDstString
, INT cwDstLength
)
3867 FIXME("%x %p %d %p %d\n", NormForm
, lpSrcString
, cwSrcLength
, lpDstString
, cwDstLength
);
3868 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
3872 /******************************************************************************
3873 * IsNormalizedString (KERNEL32.@)
3875 BOOL WINAPI
IsNormalizedString(NORM_FORM NormForm
, LPCWSTR lpString
, INT cwLength
)
3877 FIXME("%x %p %d\n", NormForm
, lpString
, cwLength
);
3878 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
3882 /******************************************************************************
3883 * IdnToAscii (KERNEL32.@)
3885 INT WINAPI
IdnToAscii(DWORD dwFlags
, LPCWSTR lpUnicodeCharStr
, INT cchUnicodeChar
,
3886 LPWSTR lpASCIICharStr
, INT cchASCIIChar
)
3888 FIXME("%x %p %d %p %d\n", dwFlags
, lpUnicodeCharStr
, cchUnicodeChar
,
3889 lpASCIICharStr
, cchASCIIChar
);
3890 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
3894 /******************************************************************************
3895 * IdnToNameprepUnicode (KERNEL32.@)
3897 INT WINAPI
IdnToNameprepUnicode(DWORD dwFlags
, LPCWSTR lpUnicodeCharStr
, INT cchUnicodeChar
,
3898 LPWSTR lpNameprepCharStr
, INT cchNameprepChar
)
3900 FIXME("%x %p %d %p %d\n", dwFlags
, lpUnicodeCharStr
, cchUnicodeChar
,
3901 lpNameprepCharStr
, cchNameprepChar
);
3902 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
3906 /******************************************************************************
3907 * IdnToUnicode (KERNEL32.@)
3909 INT WINAPI
IdnToUnicode(DWORD dwFlags
, LPCWSTR lpASCIICharStr
, INT cchASCIIChar
,
3910 LPWSTR lpUnicodeCharStr
, INT cchUnicodeChar
)
3912 FIXME("%x %p %d %p %d\n", dwFlags
, lpASCIICharStr
, cchASCIIChar
,
3913 lpUnicodeCharStr
, cchUnicodeChar
);
3914 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);