Fixed GetLocaleInfo32A for other languages than en_uk.
[wine/multimedia.git] / ole / ole2nls.c
blob85b343db08b810c2a8bf48ab5451998855d3f2b1
1 /*
2 * OLE2NLS library
4 * Copyright 1995 Martin von Loewis
5 * Copyright 1998 David Lee Lambert
6 */
8 #include <string.h>
9 #include <ctype.h>
10 #include <stdlib.h>
11 #include "windows.h"
12 #include "heap.h"
13 #include "ole.h"
14 #include "options.h"
15 #include "winnls.h"
16 #include "winreg.h"
17 #include "winerror.h"
18 #include "debug.h"
20 int MAIN_GetLanguageID(char*lang, char*country, char*charset, char*dialect);
22 /* Locale name to id map. used by EnumSystemLocales, GetLocalInfoA
23 * MUST contain all #defines from winnls.h
24 * last entry has NULL name, 0 id.
25 */
26 #define LOCALE_ENTRY(x) {#x,LOCALE_##x}
27 static struct tagLOCALE_NAME2ID {
28 char *name;
29 DWORD id;
30 } locale_name2id[]= {
31 LOCALE_ENTRY(ILANGUAGE),
32 LOCALE_ENTRY(SLANGUAGE),
33 LOCALE_ENTRY(SENGLANGUAGE),
34 LOCALE_ENTRY(SABBREVLANGNAME),
35 LOCALE_ENTRY(SNATIVELANGNAME),
36 LOCALE_ENTRY(ICOUNTRY),
37 LOCALE_ENTRY(SCOUNTRY),
38 LOCALE_ENTRY(SENGCOUNTRY),
39 LOCALE_ENTRY(SABBREVCTRYNAME),
40 LOCALE_ENTRY(SNATIVECTRYNAME),
41 LOCALE_ENTRY(IDEFAULTLANGUAGE),
42 LOCALE_ENTRY(IDEFAULTCOUNTRY),
43 LOCALE_ENTRY(IDEFAULTCODEPAGE),
44 LOCALE_ENTRY(IDEFAULTANSICODEPAGE),
45 LOCALE_ENTRY(SLIST),
46 LOCALE_ENTRY(IMEASURE),
47 LOCALE_ENTRY(SDECIMAL),
48 LOCALE_ENTRY(STHOUSAND),
49 LOCALE_ENTRY(SGROUPING),
50 LOCALE_ENTRY(IDIGITS),
51 LOCALE_ENTRY(ILZERO),
52 LOCALE_ENTRY(INEGNUMBER),
53 LOCALE_ENTRY(SNATIVEDIGITS),
54 LOCALE_ENTRY(SCURRENCY),
55 LOCALE_ENTRY(SINTLSYMBOL),
56 LOCALE_ENTRY(SMONDECIMALSEP),
57 LOCALE_ENTRY(SMONTHOUSANDSEP),
58 LOCALE_ENTRY(SMONGROUPING),
59 LOCALE_ENTRY(ICURRDIGITS),
60 LOCALE_ENTRY(IINTLCURRDIGITS),
61 LOCALE_ENTRY(ICURRENCY),
62 LOCALE_ENTRY(INEGCURR),
63 LOCALE_ENTRY(SDATE),
64 LOCALE_ENTRY(STIME),
65 LOCALE_ENTRY(SSHORTDATE),
66 LOCALE_ENTRY(SLONGDATE),
67 LOCALE_ENTRY(STIMEFORMAT),
68 LOCALE_ENTRY(IDATE),
69 LOCALE_ENTRY(ILDATE),
70 LOCALE_ENTRY(ITIME),
71 LOCALE_ENTRY(ITIMEMARKPOSN),
72 LOCALE_ENTRY(ICENTURY),
73 LOCALE_ENTRY(ITLZERO),
74 LOCALE_ENTRY(IDAYLZERO),
75 LOCALE_ENTRY(IMONLZERO),
76 LOCALE_ENTRY(S1159),
77 LOCALE_ENTRY(S2359),
78 LOCALE_ENTRY(ICALENDARTYPE),
79 LOCALE_ENTRY(IOPTIONALCALENDAR),
80 LOCALE_ENTRY(IFIRSTDAYOFWEEK),
81 LOCALE_ENTRY(IFIRSTWEEKOFYEAR),
82 LOCALE_ENTRY(SDAYNAME1),
83 LOCALE_ENTRY(SDAYNAME2),
84 LOCALE_ENTRY(SDAYNAME3),
85 LOCALE_ENTRY(SDAYNAME4),
86 LOCALE_ENTRY(SDAYNAME5),
87 LOCALE_ENTRY(SDAYNAME6),
88 LOCALE_ENTRY(SDAYNAME7),
89 LOCALE_ENTRY(SABBREVDAYNAME1),
90 LOCALE_ENTRY(SABBREVDAYNAME2),
91 LOCALE_ENTRY(SABBREVDAYNAME3),
92 LOCALE_ENTRY(SABBREVDAYNAME4),
93 LOCALE_ENTRY(SABBREVDAYNAME5),
94 LOCALE_ENTRY(SABBREVDAYNAME6),
95 LOCALE_ENTRY(SABBREVDAYNAME7),
96 LOCALE_ENTRY(SMONTHNAME1),
97 LOCALE_ENTRY(SMONTHNAME2),
98 LOCALE_ENTRY(SMONTHNAME3),
99 LOCALE_ENTRY(SMONTHNAME4),
100 LOCALE_ENTRY(SMONTHNAME5),
101 LOCALE_ENTRY(SMONTHNAME6),
102 LOCALE_ENTRY(SMONTHNAME7),
103 LOCALE_ENTRY(SMONTHNAME8),
104 LOCALE_ENTRY(SMONTHNAME9),
105 LOCALE_ENTRY(SMONTHNAME10),
106 LOCALE_ENTRY(SMONTHNAME11),
107 LOCALE_ENTRY(SMONTHNAME12),
108 LOCALE_ENTRY(SMONTHNAME13),
109 LOCALE_ENTRY(SABBREVMONTHNAME1),
110 LOCALE_ENTRY(SABBREVMONTHNAME2),
111 LOCALE_ENTRY(SABBREVMONTHNAME3),
112 LOCALE_ENTRY(SABBREVMONTHNAME4),
113 LOCALE_ENTRY(SABBREVMONTHNAME5),
114 LOCALE_ENTRY(SABBREVMONTHNAME6),
115 LOCALE_ENTRY(SABBREVMONTHNAME7),
116 LOCALE_ENTRY(SABBREVMONTHNAME8),
117 LOCALE_ENTRY(SABBREVMONTHNAME9),
118 LOCALE_ENTRY(SABBREVMONTHNAME10),
119 LOCALE_ENTRY(SABBREVMONTHNAME11),
120 LOCALE_ENTRY(SABBREVMONTHNAME12),
121 LOCALE_ENTRY(SABBREVMONTHNAME13),
122 LOCALE_ENTRY(SPOSITIVESIGN),
123 LOCALE_ENTRY(SNEGATIVESIGN),
124 LOCALE_ENTRY(IPOSSIGNPOSN),
125 LOCALE_ENTRY(INEGSIGNPOSN),
126 LOCALE_ENTRY(IPOSSYMPRECEDES),
127 LOCALE_ENTRY(IPOSSEPBYSPACE),
128 LOCALE_ENTRY(INEGSYMPRECEDES),
129 LOCALE_ENTRY(INEGSEPBYSPACE),
130 /* LOCALE_ENTRY(FONTSIGNATURE),*/
131 {NULL,0},
134 const struct map_lcid2str {
135 LCID langid;
136 const char *langname;
137 } languages[]={
138 {0x0401,"Arabic (Saudi Arabia)"},
139 {0x0801,"Arabic (Iraq)"},
140 {0x0c01,"Arabic (Egypt)"},
141 {0x1001,"Arabic (Libya)"},
142 {0x1401,"Arabic (Algeria)"},
143 {0x1801,"Arabic (Morocco)"},
144 {0x1c01,"Arabic (Tunisia)"},
145 {0x2001,"Arabic (Oman)"},
146 {0x2401,"Arabic (Yemen)"},
147 {0x2801,"Arabic (Syria)"},
148 {0x2c01,"Arabic (Jordan)"},
149 {0x3001,"Arabic (Lebanon)"},
150 {0x3401,"Arabic (Kuwait)"},
151 {0x3801,"Arabic (United Arab Emirates)"},
152 {0x3c01,"Arabic (Bahrain)"},
153 {0x4001,"Arabic (Qatar)"},
154 {0x0402,"Bulgarian"},
155 {0x0403,"Catalan"},
156 {0x0404,"Chinese (Taiwan)"},
157 {0x0804,"Chinese (People's Republic of China)"},
158 {0x0c04,"Chinese (Hong Kong)"},
159 {0x1004,"Chinese (Singapore)"},
160 {0x1404,"Chinese (Macau)"},
161 {0x0405,"Czech"},
162 {0x0406,"Danish"},
163 {0x0407,"German (Germany)"},
164 {0x0807,"German (Switzerland)"},
165 {0x0c07,"German (Austria)"},
166 {0x1007,"German (Luxembourg)"},
167 {0x1407,"German (Liechtenstein)"},
168 {0x0408,"Greek"},
169 {0x0409,"English (United States)"},
170 {0x0809,"English (United Kingdom)"},
171 {0x0c09,"English (Australia)"},
172 {0x1009,"English (Canada)"},
173 {0x1409,"English (New Zealand)"},
174 {0x1809,"English (Ireland)"},
175 {0x1c09,"English (South Africa)"},
176 {0x2009,"English (Jamaica)"},
177 {0x2409,"English (Caribbean)"},
178 {0x2809,"English (Belize)"},
179 {0x2c09,"English (Trinidad)"},
180 {0x3009,"English (Zimbabwe)"},
181 {0x3409,"English (Philippines)"},
182 {0x040a,"Spanish (Spain, traditional sorting)"},
183 {0x080a,"Spanish (Mexico)"},
184 {0x0c0a,"Spanish (Spain, international sorting)"},
185 {0x100a,"Spanish (Guatemala)"},
186 {0x140a,"Spanish (Costa Rica)"},
187 {0x180a,"Spanish (Panama)"},
188 {0x1c0a,"Spanish (Dominican Republic)"},
189 {0x200a,"Spanish (Venezuela)"},
190 {0x240a,"Spanish (Colombia)"},
191 {0x280a,"Spanish (Peru)"},
192 {0x2c0a,"Spanish (Argentina)"},
193 {0x300a,"Spanish (Ecuador)"},
194 {0x340a,"Spanish (Chile)"},
195 {0x380a,"Spanish (Uruguay)"},
196 {0x3c0a,"Spanish (Paraguay)"},
197 {0x400a,"Spanish (Bolivia)"},
198 {0x440a,"Spanish (El Salvador)"},
199 {0x480a,"Spanish (Honduras)"},
200 {0x4c0a,"Spanish (Nicaragua)"},
201 {0x500a,"Spanish (Puerto Rico)"},
202 {0x040b,"Finnish"},
203 {0x040c,"French (France)"},
204 {0x080c,"French (Belgium)"},
205 {0x0c0c,"French (Canada)"},
206 {0x100c,"French (Switzerland)"},
207 {0x140c,"French (Luxembourg)"},
208 {0x180c,"French (Monaco)"},
209 {0x040d,"Hebrew"},
210 {0x040e,"Hungarian"},
211 {0x040f,"Icelandic"},
212 {0x0410,"Italian (Italy)"},
213 {0x0810,"Italian (Switzerland)"},
214 {0x0411,"Japanese"},
215 {0x0412,"Korean (Wansung)"},
216 {0x0812,"Korean (Johab)"},
217 {0x0413,"Dutch (Netherlands)"},
218 {0x0813,"Dutch (Belgium)"},
219 {0x0414,"Norwegian (Bokmal)"},
220 {0x0814,"Norwegian (Nynorsk)"},
221 {0x0415,"Polish"},
222 {0x0416,"Portuguese (Brazil)"},
223 {0x0816,"Portuguese (Portugal)"},
224 {0x0417,"Rhaeto Romanic"},
225 {0x0418,"Romanian"},
226 {0x0818,"Moldavian"},
227 {0x0419,"Russian (Russia)"},
228 {0x0819,"Russian (Moldavia)"},
229 {0x041a,"Croatian"},
230 {0x081a,"Serbian (latin)"},
231 {0x0c1a,"Serbian (cyrillic)"},
232 {0x041b,"Slovak"},
233 {0x041c,"Albanian"},
234 {0x041d,"Swedish (Sweden)"},
235 {0x081d,"Swedish (Finland)"},
236 {0x041e,"Thai"},
237 {0x041f,"Turkish"},
238 {0x0420,"Urdu"},
239 {0x0421,"Indonesian"},
240 {0x0422,"Ukrainian"},
241 {0x0423,"Belarusian"},
242 {0x0424,"Slovene"},
243 {0x0425,"Estonian"},
244 {0x0426,"Latvian"},
245 {0x0427,"Lithuanian (modern)"},
246 {0x0827,"Lithuanian (classic)"},
247 {0x0428,"Maori"},
248 {0x0429,"Farsi"},
249 {0x042a,"Vietnamese"},
250 {0x042b,"Armenian"},
251 {0x042c,"Azeri (latin)"},
252 {0x082c,"Azeri (cyrillic)"},
253 {0x042d,"Basque"},
254 {0x042e,"Sorbian"},
255 {0x042f,"Macedonian"},
256 {0x0430,"Sutu"},
257 {0x0431,"Tsonga"},
258 {0x0432,"Tswana"},
259 {0x0433,"Venda"},
260 {0x0434,"Xhosa"},
261 {0x0435,"Zulu"},
262 {0x0436,"Afrikaans"},
263 {0x0437,"Georgian"},
264 {0x0438,"Faeroese"},
265 {0x0439,"Hindi"},
266 {0x043a,"Maltese"},
267 {0x043b,"Saami"},
268 {0x043c,"Irish gaelic"},
269 {0x083c,"Scottish gaelic"},
270 {0x043e,"Malay (Malaysia)"},
271 {0x083e,"Malay (Brunei Darussalam)"},
272 {0x043f,"Kazak"},
273 {0x0441,"Swahili"},
274 {0x0443,"Uzbek (latin)"},
275 {0x0843,"Uzbek (cyrillic)"},
276 {0x0444,"Tatar"},
277 {0x0445,"Bengali"},
278 {0x0446,"Punjabi"},
279 {0x0447,"Gujarati"},
280 {0x0448,"Oriya"},
281 {0x0449,"Tamil"},
282 {0x044a,"Telugu"},
283 {0x044b,"Kannada"},
284 {0x044c,"Malayalam"},
285 {0x044d,"Assamese"},
286 {0x044e,"Marathi"},
287 {0x044f,"Sanskrit"},
288 {0x0457,"Konkani"},
289 {0x048f,"Esperanto"}, /* Non official */
290 {0x0000,"Unknown"}
291 }, languages_de[]={
292 {0x0401,"Arabic"},
293 {0x0402,"Bulgarisch"},
294 {0x0403,"Katalanisch"},
295 {0x0404,"Traditionales Chinesisch"},
296 {0x0405,"Tschecisch"},
297 {0x0406,"Dänisch"},
298 {0x0407,"Deutsch"},
299 {0x0408,"Griechisch"},
300 {0x0409,"Amerikanisches Englisch"},
301 {0x040A,"Kastilisches Spanisch"},
302 {0x040B,"Finnisch"},
303 {0x040C,"Franzvsisch"},
304 {0x040D,"Hebrdisch"},
305 {0x040E,"Ungarisch"},
306 {0x040F,"Isldndisch"},
307 {0x0410,"Italienisch"},
308 {0x0411,"Japanisch"},
309 {0x0412,"Koreanisch"},
310 {0x0413,"Niederldndisch"},
311 {0x0414,"Norwegisch-Bokmal"},
312 {0x0415,"Polnisch"},
313 {0x0416,"Brasilianisches Portugiesisch"},
314 {0x0417,"Rdtoromanisch"},
315 {0x0418,"Rumdnisch"},
316 {0x0419,"Russisch"},
317 {0x041A,"Kroatoserbisch (lateinisch)"},
318 {0x041B,"Slowenisch"},
319 {0x041C,"Albanisch"},
320 {0x041D,"Schwedisch"},
321 {0x041E,"Thai"},
322 {0x041F,"Türkisch"},
323 {0x0420,"Urdu"},
324 {0x0421,"Bahasa"},
325 {0x0804,"Vereinfachtes Chinesisch"},
326 {0x0807,"Schweizerdeutsch"},
327 {0x0809,"Britisches Englisch"},
328 {0x080A,"Mexikanisches Spanisch"},
329 {0x080C,"Belgisches Franzvsisch"},
330 {0x0810,"Schweizerisches Italienisch"},
331 {0x0813,"Belgisches Niederldndisch"},
332 {0x0814,"Norgwegisch-Nynorsk"},
333 {0x0816,"Portugiesisch"},
334 {0x081A,"Serbokratisch (kyrillisch)"},
335 {0x0C1C,"Kanadisches Franzvsisch"},
336 {0x100C,"Schweizerisches Franzvsisch"},
337 {0x0000,"Unbekannt"},
340 /***********************************************************************
341 * GetUserDefaultLCID (OLE2NLS.1)
343 LCID WINAPI GetUserDefaultLCID()
345 return MAKELCID( GetUserDefaultLangID() , SORT_DEFAULT );
348 /***********************************************************************
349 * GetSystemDefaultLCID (OLE2NLS.2)
351 LCID WINAPI GetSystemDefaultLCID()
353 return GetUserDefaultLCID();
356 /***********************************************************************
357 * GetUserDefaultLangID (OLE2NLS.3)
359 LANGID WINAPI GetUserDefaultLangID()
361 char *buf=NULL;
362 char *lang,*country,*charset,*dialect,*next;
363 int ret=0;
365 if (Options.language) return Languages[Options.language].langid;
367 buf=getenv("LANGUAGE");
368 if (!buf) buf=getenv("LANG");
369 if (!buf) buf=getenv("LC_ALL");
370 if (!buf) buf=getenv("LC_MESSAGES");
371 if (!buf) return MAKELANGID( LANG_NEUTRAL, SUBLANG_DEFAULT );
373 if (!strcmp(buf,"POSIX") || !strcmp(buf,"C")) {
374 free(buf);
375 return MAKELANGID( LANG_NEUTRAL, SUBLANG_DEFAULT );
378 lang=buf;
380 do {
381 next=strchr(lang,':'); if (next) *next++='\0';
382 dialect=strchr(lang,'@'); if (dialect) *dialect++='\0';
383 charset=strchr(lang,'.'); if (charset) *charset++='\0';
384 country=strchr(lang,'_'); if (country) *country++='\0';
386 ret=MAIN_GetLanguageID(lang, country, charset, dialect);
388 lang=next;
390 } while (lang && !ret);
392 free(buf);
393 return (LANGID)ret;
396 /***********************************************************************
397 * GetSystemDefaultLangID (OLE2NLS.4)
399 LANGID WINAPI GetSystemDefaultLangID()
401 return GetUserDefaultLangID();
404 /******************************************************************************
405 * GetLocaleInfo16 [OLE2NLS.5]
406 * Is the last parameter really WORD for Win16?
408 INT16 WINAPI GetLocaleInfo16(LCID lcid,LCTYPE LCType,LPSTR buf,INT16 len)
410 return GetLocaleInfo32A(lcid,LCType,buf,len);
413 INT32 WINAPI GetLocaleInfo32A(LCID lcid,LCTYPE LCType,LPSTR buf,INT32 len)
415 char *retString;
416 int found,i;
417 int lang=0;
419 TRACE(ole,"(lcid=0x%lx,lctype=0x%lx,%p,%x)\n",
420 lcid,LCType,buf,len);
422 if (lcid == LOCALE_SYSTEM_DEFAULT || (LCType & LOCALE_NOUSEROVERRIDE) )
423 { lcid = GetSystemDefaultLCID();
425 else if (lcid == LOCALE_USER_DEFAULT)
426 { lcid = GetUserDefaultLCID();
429 LCType &= ~(LOCALE_NOUSEROVERRIDE|LOCALE_USE_CP_ACP);
431 /* As an option, we could obtain the value from win.ini.
432 This would not match the Wine compile-time option.
433 Also, not all identifiers are available from win.ini */
434 retString=0;
435 /* If we are through all of this, retLen should not be zero anymore.
436 If it is, the value is not supported */
437 i=0;
438 while (locale_name2id[i].name!=NULL) {
439 if (LCType == locale_name2id[i].id) {
440 retString = locale_name2id[i].name;
441 break;
443 i++;
445 if (!retString) {
446 WARN(ole,"Unkown LC type %lX\n",LCType);
447 return 0;
450 #define LOCVAL(type,value) case type:retString=value;found=1;break;
451 #define LANG_BEGIN(l,s) case MAKELANGID(l,s): switch (LCType) {
452 #define LANG_END default: found=0; break; } break;
454 /* Now, the language specific definitions. They don't have to be
455 complete */
457 found=0; i=0; lang=lcid;
459 if (lang ==0x400) /*LANG_NEUTRAL ==> US English*/
460 { lang = 0x409;
461 WARN(ole,"no language set, assume LANG_ENGLISH_US \n");
466 { switch(lang)
469 LANG_BEGIN (LANG_GERMAN, SUBLANG_GERMAN) /*0x407*/
470 #include "nls/deu.nls"
471 LANG_END
473 LANG_BEGIN (LANG_DANISH, SUBLANG_DEFAULT) /*0x406*/
474 #include "nls/dan.nls"
475 LANG_END
477 LANG_BEGIN (LANG_ENGLISH, SUBLANG_ENGLISH_US) /*0x409*/
478 #include "nls/enu.nls"
479 LANG_END
481 LANG_BEGIN (LANG_ESPERANTO, SUBLANG_DEFAULT) /*0x48f*/
482 #include "nls/esperanto.nls"
483 LANG_END
485 LANG_BEGIN (LANG_FINNISH, SUBLANG_DEFAULT) /*0x040B*/
486 #include "nls/fin.nls"
487 LANG_END
489 LANG_BEGIN (LANG_ITALIAN, SUBLANG_ITALIAN) /*0x410*/
490 #include "nls/ita.nls"
491 LANG_END
493 LANG_BEGIN (LANG_ENGLISH, SUBLANG_ENGLISH_UK) /*0x809*/
494 #include "nls/eng.nls"
495 LANG_END
497 LANG_BEGIN (LANG_KOREAN, SUBLANG_KOREAN) /*0x412*/
498 #include "nls/kor.nls"
499 LANG_END
501 LANG_BEGIN (LANG_HUNGARIAN, SUBLANG_DEFAULT) /*0x40e*/
502 #include "nls/hun.nls"
503 LANG_END
505 LANG_BEGIN (LANG_POLISH, SUBLANG_DEFAULT) /*0x415*/
506 #include "nls/plk.nls"
507 LANG_END
509 LANG_BEGIN (LANG_PORTUGUESE ,SUBLANG_PORTUGUESE_BRAZILIAN) /*0x416*/
510 #include "nls/ptb.nls"
511 LANG_END
513 LANG_BEGIN (LANG_SWEDISH, SUBLANG_DEFAULT) /*0x41d*/
514 #include "nls/sve.nls"
515 LANG_END
517 /*Insert other languages here*/
519 default:
520 found=0;
521 break;
522 } /* switch */
524 /* language not found, try without a sublanguage*/
525 lang=MAKELANGID( PRIMARYLANGID(lang), SUBLANG_DEFAULT);
526 i++;
527 } while (!found && i<2);
529 if(!found) {
530 ERR(ole,"'%s' not supported for your language.\n",
531 retString);
532 retString = "<WINE-NLS-unknown>";
534 if (buf)
535 lstrcpyn32A(buf,retString,len);
536 return strlen(retString)+1;
539 /******************************************************************************
540 * GetLocaleInfo32W [KERNEL32.343]
542 * Is the last parameter really WORD for Win16?
544 INT32 WINAPI GetLocaleInfo32W(LCID lcid,LCTYPE LCType,LPWSTR wbuf,INT32 len)
546 LPSTR abuf = (LPSTR)HeapAlloc(GetProcessHeap(),0,len);
548 INT32 n = GetLocaleInfo32A(lcid, LCType, abuf, len);
549 if (wbuf)
550 lstrcpynAtoW(wbuf,abuf,len);
551 HeapFree(GetProcessHeap(),0,abuf);
552 return n;
555 /******************************************************************************
556 * SetLocaleInfoA [KERNEL32.656]
558 BOOL16 WINAPI SetLocaleInfoA(DWORD lcid, DWORD lctype, LPCSTR data)
560 FIXME(ole,"(%ld,%ld,%s): stub\n",lcid,lctype,data);
561 return TRUE;
564 /******************************************************************************
565 * IsValidLocale [KERNEL32.489]
567 BOOL32 WINAPI IsValidLocale(LCID lcid,DWORD flags)
569 /* we support ANY language. Well, at least say that...*/
570 return TRUE;
573 /******************************************************************************
574 * EnumSystemLocales32W [KERNEL32.209]
576 BOOL32 WINAPI EnumSystemLocales32W( LOCALE_ENUMPROC32W lpfnLocaleEnum,
577 DWORD flags )
579 int i;
580 BOOL32 ret;
581 WCHAR buffer[200];
582 HKEY xhkey;
584 TRACE(win32,"(%p,%08lx)\n",lpfnLocaleEnum,flags );
585 /* see if we can reuse the Win95 registry entries.... */
586 if (ERROR_SUCCESS==RegOpenKey32A(HKEY_LOCAL_MACHINE,"\\System\\CurrentControlSet\\control\\Nls\\Locale\\",&xhkey)) {
587 i=0;
588 while (1) {
589 if (ERROR_SUCCESS!=RegEnumKey32W(xhkey,i,buffer,sizeof(buffer)))
590 break;
591 if (!lpfnLocaleEnum(buffer))
592 break;
593 i++;
595 RegCloseKey(xhkey);
596 return TRUE;
599 i=0;
600 while (languages[i].langname!=NULL)
602 LPWSTR cp;
603 char xbuffer[10];
605 sprintf(xbuffer,"%08lx",(DWORD)languages[i].langid);
607 cp = HEAP_strdupAtoW( GetProcessHeap(), 0, xbuffer );
608 ret = lpfnLocaleEnum(cp);
609 HeapFree( GetProcessHeap(), 0, cp );
610 if (!ret) break;
611 i++;
613 return TRUE;
616 /******************************************************************************
617 * EnumSystemLocales32A [KERNEL32.208]
619 BOOL32 WINAPI EnumSystemLocales32A(LOCALE_ENUMPROC32A lpfnLocaleEnum,
620 DWORD flags)
622 int i;
623 CHAR buffer[200];
624 HKEY xhkey;
626 TRACE(win32,"(%p,%08lx)\n",
627 lpfnLocaleEnum,flags
629 if (ERROR_SUCCESS==RegOpenKey32A(HKEY_LOCAL_MACHINE,"\\System\\CurrentControlSet\\control\\Nls\\Locale\\",&xhkey)) {
630 i=0;
631 while (1) {
632 if (ERROR_SUCCESS!=RegEnumKey32A(xhkey,i,buffer,sizeof(buffer)))
633 break;
634 if (!lpfnLocaleEnum(buffer))
635 break;
636 i++;
638 RegCloseKey(xhkey);
639 return TRUE;
641 i=0;
642 while (languages[i].langname!=NULL) {
643 sprintf(buffer,"%08lx",(DWORD)languages[i].langid);
644 if (!lpfnLocaleEnum(buffer))
645 break;
646 i++;
648 return TRUE;
651 static const unsigned char CT_CType2_LUT[] = {
652 C2_NOTAPPLICABLE, /* - 0 */
653 C2_NOTAPPLICABLE, /* - 1 */
654 C2_NOTAPPLICABLE, /* - 2 */
655 C2_NOTAPPLICABLE, /* - 3 */
656 C2_NOTAPPLICABLE, /* - 4 */
657 C2_NOTAPPLICABLE, /* - 5 */
658 C2_NOTAPPLICABLE, /* - 6 */
659 C2_NOTAPPLICABLE, /* - 7 */
660 C2_NOTAPPLICABLE, /* - 8 */
661 C2_SEGMENTSEPARATOR, /* - 9 */
662 C2_NOTAPPLICABLE, /* - 10 */
663 C2_NOTAPPLICABLE, /* - 11 */
664 C2_NOTAPPLICABLE, /* - 12 */
665 C2_NOTAPPLICABLE, /* - 13 */
666 C2_NOTAPPLICABLE, /* - 14 */
667 C2_NOTAPPLICABLE, /* - 15 */
668 C2_NOTAPPLICABLE, /* - 16 */
669 C2_NOTAPPLICABLE, /* - 17 */
670 C2_NOTAPPLICABLE, /* - 18 */
671 C2_NOTAPPLICABLE, /* - 19 */
672 C2_NOTAPPLICABLE, /* - 20 */
673 C2_NOTAPPLICABLE, /* - 21 */
674 C2_NOTAPPLICABLE, /* - 22 */
675 C2_NOTAPPLICABLE, /* - 23 */
676 C2_NOTAPPLICABLE, /* - 24 */
677 C2_NOTAPPLICABLE, /* - 25 */
678 C2_NOTAPPLICABLE, /* - 26 */
679 C2_NOTAPPLICABLE, /* - 27 */
680 C2_NOTAPPLICABLE, /* - 28 */
681 C2_NOTAPPLICABLE, /* - 29 */
682 C2_NOTAPPLICABLE, /* - 30 */
683 C2_NOTAPPLICABLE, /* - 31 */
684 C2_WHITESPACE, /* - 32 */
685 C2_OTHERNEUTRAL, /* ! - 33 */
686 C2_OTHERNEUTRAL, /* " - 34 */ /* " */
687 C2_EUROPETERMINATOR, /* # - 35 */
688 C2_EUROPETERMINATOR, /* $ - 36 */
689 C2_EUROPETERMINATOR, /* % - 37 */
690 C2_LEFTTORIGHT, /* & - 38 */
691 C2_OTHERNEUTRAL, /* ' - 39 */
692 C2_OTHERNEUTRAL, /* ( - 40 */
693 C2_OTHERNEUTRAL, /* ) - 41 */
694 C2_OTHERNEUTRAL, /* * - 42 */
695 C2_EUROPETERMINATOR, /* + - 43 */
696 C2_COMMONSEPARATOR, /* , - 44 */
697 C2_EUROPETERMINATOR, /* - - 45 */
698 C2_EUROPESEPARATOR, /* . - 46 */
699 C2_EUROPESEPARATOR, /* / - 47 */
700 C2_EUROPENUMBER, /* 0 - 48 */
701 C2_EUROPENUMBER, /* 1 - 49 */
702 C2_EUROPENUMBER, /* 2 - 50 */
703 C2_EUROPENUMBER, /* 3 - 51 */
704 C2_EUROPENUMBER, /* 4 - 52 */
705 C2_EUROPENUMBER, /* 5 - 53 */
706 C2_EUROPENUMBER, /* 6 - 54 */
707 C2_EUROPENUMBER, /* 7 - 55 */
708 C2_EUROPENUMBER, /* 8 - 56 */
709 C2_EUROPENUMBER, /* 9 - 57 */
710 C2_COMMONSEPARATOR, /* : - 58 */
711 C2_OTHERNEUTRAL, /* ; - 59 */
712 C2_OTHERNEUTRAL, /* < - 60 */
713 C2_OTHERNEUTRAL, /* = - 61 */
714 C2_OTHERNEUTRAL, /* > - 62 */
715 C2_OTHERNEUTRAL, /* ? - 63 */
716 C2_LEFTTORIGHT, /* @ - 64 */
717 C2_LEFTTORIGHT, /* A - 65 */
718 C2_LEFTTORIGHT, /* B - 66 */
719 C2_LEFTTORIGHT, /* C - 67 */
720 C2_LEFTTORIGHT, /* D - 68 */
721 C2_LEFTTORIGHT, /* E - 69 */
722 C2_LEFTTORIGHT, /* F - 70 */
723 C2_LEFTTORIGHT, /* G - 71 */
724 C2_LEFTTORIGHT, /* H - 72 */
725 C2_LEFTTORIGHT, /* I - 73 */
726 C2_LEFTTORIGHT, /* J - 74 */
727 C2_LEFTTORIGHT, /* K - 75 */
728 C2_LEFTTORIGHT, /* L - 76 */
729 C2_LEFTTORIGHT, /* M - 77 */
730 C2_LEFTTORIGHT, /* N - 78 */
731 C2_LEFTTORIGHT, /* O - 79 */
732 C2_LEFTTORIGHT, /* P - 80 */
733 C2_LEFTTORIGHT, /* Q - 81 */
734 C2_LEFTTORIGHT, /* R - 82 */
735 C2_LEFTTORIGHT, /* S - 83 */
736 C2_LEFTTORIGHT, /* T - 84 */
737 C2_LEFTTORIGHT, /* U - 85 */
738 C2_LEFTTORIGHT, /* V - 86 */
739 C2_LEFTTORIGHT, /* W - 87 */
740 C2_LEFTTORIGHT, /* X - 88 */
741 C2_LEFTTORIGHT, /* Y - 89 */
742 C2_LEFTTORIGHT, /* Z - 90 */
743 C2_OTHERNEUTRAL, /* [ - 91 */
744 C2_OTHERNEUTRAL, /* \ - 92 */
745 C2_OTHERNEUTRAL, /* ] - 93 */
746 C2_OTHERNEUTRAL, /* ^ - 94 */
747 C2_OTHERNEUTRAL, /* _ - 95 */
748 C2_OTHERNEUTRAL, /* ` - 96 */
749 C2_LEFTTORIGHT, /* a - 97 */
750 C2_LEFTTORIGHT, /* b - 98 */
751 C2_LEFTTORIGHT, /* c - 99 */
752 C2_LEFTTORIGHT, /* d - 100 */
753 C2_LEFTTORIGHT, /* e - 101 */
754 C2_LEFTTORIGHT, /* f - 102 */
755 C2_LEFTTORIGHT, /* g - 103 */
756 C2_LEFTTORIGHT, /* h - 104 */
757 C2_LEFTTORIGHT, /* i - 105 */
758 C2_LEFTTORIGHT, /* j - 106 */
759 C2_LEFTTORIGHT, /* k - 107 */
760 C2_LEFTTORIGHT, /* l - 108 */
761 C2_LEFTTORIGHT, /* m - 109 */
762 C2_LEFTTORIGHT, /* n - 110 */
763 C2_LEFTTORIGHT, /* o - 111 */
764 C2_LEFTTORIGHT, /* p - 112 */
765 C2_LEFTTORIGHT, /* q - 113 */
766 C2_LEFTTORIGHT, /* r - 114 */
767 C2_LEFTTORIGHT, /* s - 115 */
768 C2_LEFTTORIGHT, /* t - 116 */
769 C2_LEFTTORIGHT, /* u - 117 */
770 C2_LEFTTORIGHT, /* v - 118 */
771 C2_LEFTTORIGHT, /* w - 119 */
772 C2_LEFTTORIGHT, /* x - 120 */
773 C2_LEFTTORIGHT, /* y - 121 */
774 C2_LEFTTORIGHT, /* z - 122 */
775 C2_OTHERNEUTRAL, /* { - 123 */
776 C2_OTHERNEUTRAL, /* | - 124 */
777 C2_OTHERNEUTRAL, /* } - 125 */
778 C2_OTHERNEUTRAL, /* ~ - 126 */
779 C2_NOTAPPLICABLE, /* \x7f - 127 */
780 C2_NOTAPPLICABLE, /* € - 128 */
781 C2_NOTAPPLICABLE, /* � - 129 */
782 C2_OTHERNEUTRAL, /* ‚ - 130 */
783 C2_LEFTTORIGHT, /* ƒ - 131 */
784 C2_OTHERNEUTRAL, /* „ - 132 */
785 C2_OTHERNEUTRAL, /* … - 133 */
786 C2_OTHERNEUTRAL, /* † - 134 */
787 C2_OTHERNEUTRAL, /* ‡ - 135 */
788 C2_LEFTTORIGHT, /* ˆ - 136 */
789 C2_EUROPETERMINATOR, /* ‰ - 137 */
790 C2_LEFTTORIGHT, /* Š - 138 */
791 C2_OTHERNEUTRAL, /* ‹ - 139 */
792 C2_LEFTTORIGHT, /* Π- 140 */
793 C2_NOTAPPLICABLE, /* � - 141 */
794 C2_NOTAPPLICABLE, /* Ž - 142 */
795 C2_NOTAPPLICABLE, /* � - 143 */
796 C2_NOTAPPLICABLE, /* � - 144 */
797 C2_OTHERNEUTRAL, /* ‘ - 145 */
798 C2_OTHERNEUTRAL, /* ’ - 146 */
799 C2_OTHERNEUTRAL, /* “ - 147 */
800 C2_OTHERNEUTRAL, /* ” - 148 */
801 C2_OTHERNEUTRAL, /* • - 149 */
802 C2_OTHERNEUTRAL, /* – - 150 */
803 C2_OTHERNEUTRAL, /* — - 151 */
804 C2_LEFTTORIGHT, /* ˜ - 152 */
805 C2_OTHERNEUTRAL, /* ™ - 153 */
806 C2_LEFTTORIGHT, /* š - 154 */
807 C2_OTHERNEUTRAL, /* › - 155 */
808 C2_LEFTTORIGHT, /* œ - 156 */
809 C2_NOTAPPLICABLE, /* � - 157 */
810 C2_NOTAPPLICABLE, /* ž - 158 */
811 C2_LEFTTORIGHT, /* Ÿ - 159 */
812 C2_WHITESPACE, /*   - 160 */
813 C2_OTHERNEUTRAL, /* ¡ - 161 */
814 C2_EUROPETERMINATOR, /* ¢ - 162 */
815 C2_EUROPETERMINATOR, /* £ - 163 */
816 C2_EUROPETERMINATOR, /* ¤ - 164 */
817 C2_EUROPETERMINATOR, /* ¥ - 165 */
818 C2_OTHERNEUTRAL, /* ¦ - 166 */
819 C2_OTHERNEUTRAL, /* § - 167 */
820 C2_OTHERNEUTRAL, /* ¨ - 168 */
821 C2_OTHERNEUTRAL, /* © - 169 */
822 C2_OTHERNEUTRAL, /* ª - 170 */
823 C2_OTHERNEUTRAL, /* « - 171 */
824 C2_OTHERNEUTRAL, /* ¬ - 172 */
825 C2_OTHERNEUTRAL, /* ­ - 173 */
826 C2_OTHERNEUTRAL, /* ® - 174 */
827 C2_OTHERNEUTRAL, /* ¯ - 175 */
828 C2_EUROPETERMINATOR, /* ° - 176 */
829 C2_EUROPETERMINATOR, /* ± - 177 */
830 C2_EUROPENUMBER, /* ² - 178 */
831 C2_EUROPENUMBER, /* ³ - 179 */
832 C2_OTHERNEUTRAL, /* ´ - 180 */
833 C2_OTHERNEUTRAL, /* µ - 181 */
834 C2_OTHERNEUTRAL, /* ¶ - 182 */
835 C2_OTHERNEUTRAL, /* · - 183 */
836 C2_OTHERNEUTRAL, /* ¸ - 184 */
837 C2_EUROPENUMBER, /* ¹ - 185 */
838 C2_OTHERNEUTRAL, /* º - 186 */
839 C2_OTHERNEUTRAL, /* » - 187 */
840 C2_OTHERNEUTRAL, /* ¼ - 188 */
841 C2_OTHERNEUTRAL, /* ½ - 189 */
842 C2_OTHERNEUTRAL, /* ¾ - 190 */
843 C2_OTHERNEUTRAL, /* ¿ - 191 */
844 C2_LEFTTORIGHT, /* À - 192 */
845 C2_LEFTTORIGHT, /* Á - 193 */
846 C2_LEFTTORIGHT, /* Â - 194 */
847 C2_LEFTTORIGHT, /* Ã - 195 */
848 C2_LEFTTORIGHT, /* Ä - 196 */
849 C2_LEFTTORIGHT, /* Å - 197 */
850 C2_LEFTTORIGHT, /* Æ - 198 */
851 C2_LEFTTORIGHT, /* Ç - 199 */
852 C2_LEFTTORIGHT, /* È - 200 */
853 C2_LEFTTORIGHT, /* É - 201 */
854 C2_LEFTTORIGHT, /* Ê - 202 */
855 C2_LEFTTORIGHT, /* Ë - 203 */
856 C2_LEFTTORIGHT, /* Ì - 204 */
857 C2_LEFTTORIGHT, /* Í - 205 */
858 C2_LEFTTORIGHT, /* Î - 206 */
859 C2_LEFTTORIGHT, /* Ï - 207 */
860 C2_LEFTTORIGHT, /* Ð - 208 */
861 C2_LEFTTORIGHT, /* Ñ - 209 */
862 C2_LEFTTORIGHT, /* Ò - 210 */
863 C2_LEFTTORIGHT, /* Ó - 211 */
864 C2_LEFTTORIGHT, /* Ô - 212 */
865 C2_LEFTTORIGHT, /* Õ - 213 */
866 C2_LEFTTORIGHT, /* Ö - 214 */
867 C2_OTHERNEUTRAL, /* × - 215 */
868 C2_LEFTTORIGHT, /* Ø - 216 */
869 C2_LEFTTORIGHT, /* Ù - 217 */
870 C2_LEFTTORIGHT, /* Ú - 218 */
871 C2_LEFTTORIGHT, /* Û - 219 */
872 C2_LEFTTORIGHT, /* Ü - 220 */
873 C2_LEFTTORIGHT, /* Ý - 221 */
874 C2_LEFTTORIGHT, /* Þ - 222 */
875 C2_LEFTTORIGHT, /* ß - 223 */
876 C2_LEFTTORIGHT, /* à - 224 */
877 C2_LEFTTORIGHT, /* á - 225 */
878 C2_LEFTTORIGHT, /* â - 226 */
879 C2_LEFTTORIGHT, /* ã - 227 */
880 C2_LEFTTORIGHT, /* ä - 228 */
881 C2_LEFTTORIGHT, /* å - 229 */
882 C2_LEFTTORIGHT, /* æ - 230 */
883 C2_LEFTTORIGHT, /* ç - 231 */
884 C2_LEFTTORIGHT, /* è - 232 */
885 C2_LEFTTORIGHT, /* é - 233 */
886 C2_LEFTTORIGHT, /* ê - 234 */
887 C2_LEFTTORIGHT, /* ë - 235 */
888 C2_LEFTTORIGHT, /* ì - 236 */
889 C2_LEFTTORIGHT, /* í - 237 */
890 C2_LEFTTORIGHT, /* î - 238 */
891 C2_LEFTTORIGHT, /* ï - 239 */
892 C2_LEFTTORIGHT, /* ð - 240 */
893 C2_LEFTTORIGHT, /* ñ - 241 */
894 C2_LEFTTORIGHT, /* ò - 242 */
895 C2_LEFTTORIGHT, /* ó - 243 */
896 C2_LEFTTORIGHT, /* ô - 244 */
897 C2_LEFTTORIGHT, /* õ - 245 */
898 C2_LEFTTORIGHT, /* ö - 246 */
899 C2_OTHERNEUTRAL, /* ÷ - 247 */
900 C2_LEFTTORIGHT, /* ø - 248 */
901 C2_LEFTTORIGHT, /* ù - 249 */
902 C2_LEFTTORIGHT, /* ú - 250 */
903 C2_LEFTTORIGHT, /* û - 251 */
904 C2_LEFTTORIGHT, /* ü - 252 */
905 C2_LEFTTORIGHT, /* ý - 253 */
906 C2_LEFTTORIGHT, /* þ - 254 */
907 C2_LEFTTORIGHT /* ÿ - 255 */
910 static const WORD CT_CType3_LUT[] = {
911 0x0000, /* - 0 */
912 0x0000, /* - 1 */
913 0x0000, /* - 2 */
914 0x0000, /* - 3 */
915 0x0000, /* - 4 */
916 0x0000, /* - 5 */
917 0x0000, /* - 6 */
918 0x0000, /* - 7 */
919 0x0000, /* - 8 */
920 0x0008, /* - 9 */
921 0x0008, /* - 10 */
922 0x0008, /* - 11 */
923 0x0008, /* - 12 */
924 0x0008, /* - 13 */
925 0x0000, /* - 14 */
926 0x0000, /* - 15 */
927 0x0000, /* - 16 */
928 0x0000, /* - 17 */
929 0x0000, /* - 18 */
930 0x0000, /* - 19 */
931 0x0000, /* - 20 */
932 0x0000, /* - 21 */
933 0x0000, /* - 22 */
934 0x0000, /* - 23 */
935 0x0000, /* - 24 */
936 0x0000, /* - 25 */
937 0x0000, /* - 26 */
938 0x0000, /* - 27 */
939 0x0000, /* - 28 */
940 0x0000, /* - 29 */
941 0x0000, /* - 30 */
942 0x0000, /* - 31 */
943 0x0048, /* - 32 */
944 0x0048, /* ! - 33 */
945 0x0448, /* " - 34 */ /* " */
946 0x0048, /* # - 35 */
947 0x0448, /* $ - 36 */
948 0x0048, /* % - 37 */
949 0x0048, /* & - 38 */
950 0x0440, /* ' - 39 */
951 0x0048, /* ( - 40 */
952 0x0048, /* ) - 41 */
953 0x0048, /* * - 42 */
954 0x0048, /* + - 43 */
955 0x0048, /* , - 44 */
956 0x0440, /* - - 45 */
957 0x0048, /* . - 46 */
958 0x0448, /* / - 47 */
959 0x0040, /* 0 - 48 */
960 0x0040, /* 1 - 49 */
961 0x0040, /* 2 - 50 */
962 0x0040, /* 3 - 51 */
963 0x0040, /* 4 - 52 */
964 0x0040, /* 5 - 53 */
965 0x0040, /* 6 - 54 */
966 0x0040, /* 7 - 55 */
967 0x0040, /* 8 - 56 */
968 0x0040, /* 9 - 57 */
969 0x0048, /* : - 58 */
970 0x0048, /* ; - 59 */
971 0x0048, /* < - 60 */
972 0x0448, /* = - 61 */
973 0x0048, /* > - 62 */
974 0x0048, /* ? - 63 */
975 0x0448, /* @ - 64 */
976 0x8040, /* A - 65 */
977 0x8040, /* B - 66 */
978 0x8040, /* C - 67 */
979 0x8040, /* D - 68 */
980 0x8040, /* E - 69 */
981 0x8040, /* F - 70 */
982 0x8040, /* G - 71 */
983 0x8040, /* H - 72 */
984 0x8040, /* I - 73 */
985 0x8040, /* J - 74 */
986 0x8040, /* K - 75 */
987 0x8040, /* L - 76 */
988 0x8040, /* M - 77 */
989 0x8040, /* N - 78 */
990 0x8040, /* O - 79 */
991 0x8040, /* P - 80 */
992 0x8040, /* Q - 81 */
993 0x8040, /* R - 82 */
994 0x8040, /* S - 83 */
995 0x8040, /* T - 84 */
996 0x8040, /* U - 85 */
997 0x8040, /* V - 86 */
998 0x8040, /* W - 87 */
999 0x8040, /* X - 88 */
1000 0x8040, /* Y - 89 */
1001 0x8040, /* Z - 90 */
1002 0x0048, /* [ - 91 */
1003 0x0448, /* \ - 92 */
1004 0x0048, /* ] - 93 */
1005 0x0448, /* ^ - 94 */
1006 0x0448, /* _ - 95 */
1007 0x0448, /* ` - 96 */
1008 0x8040, /* a - 97 */
1009 0x8040, /* b - 98 */
1010 0x8040, /* c - 99 */
1011 0x8040, /* d - 100 */
1012 0x8040, /* e - 101 */
1013 0x8040, /* f - 102 */
1014 0x8040, /* g - 103 */
1015 0x8040, /* h - 104 */
1016 0x8040, /* i - 105 */
1017 0x8040, /* j - 106 */
1018 0x8040, /* k - 107 */
1019 0x8040, /* l - 108 */
1020 0x8040, /* m - 109 */
1021 0x8040, /* n - 110 */
1022 0x8040, /* o - 111 */
1023 0x8040, /* p - 112 */
1024 0x8040, /* q - 113 */
1025 0x8040, /* r - 114 */
1026 0x8040, /* s - 115 */
1027 0x8040, /* t - 116 */
1028 0x8040, /* u - 117 */
1029 0x8040, /* v - 118 */
1030 0x8040, /* w - 119 */
1031 0x8040, /* x - 120 */
1032 0x8040, /* y - 121 */
1033 0x8040, /* z - 122 */
1034 0x0048, /* { - 123 */
1035 0x0048, /* | - 124 */
1036 0x0048, /* } - 125 */
1037 0x0448, /* ~ - 126 */
1038 0x0000, /* \x7f - 127 */
1039 0x0000, /* € - 128 */
1040 0x0000, /* � - 129 */
1041 0x0008, /* ‚ - 130 */
1042 0x8000, /* ƒ - 131 */
1043 0x0008, /* „ - 132 */
1044 0x0008, /* … - 133 */
1045 0x0008, /* † - 134 */
1046 0x0008, /* ‡ - 135 */
1047 0x0001, /* ˆ - 136 */
1048 0x0008, /* ‰ - 137 */
1049 0x8003, /* Š - 138 */
1050 0x0008, /* ‹ - 139 */
1051 0x8000, /* Π- 140 */
1052 0x0000, /* � - 141 */
1053 0x0000, /* Ž - 142 */
1054 0x0000, /* � - 143 */
1055 0x0000, /* � - 144 */
1056 0x0088, /* ‘ - 145 */
1057 0x0088, /* ’ - 146 */
1058 0x0088, /* “ - 147 */
1059 0x0088, /* ” - 148 */
1060 0x0008, /* • - 149 */
1061 0x0400, /* – - 150 */
1062 0x0400, /* — - 151 */
1063 0x0408, /* ˜ - 152 */
1064 0x0000, /* ™ - 153 */
1065 0x8003, /* š - 154 */
1066 0x0008, /* › - 155 */
1067 0x8000, /* œ - 156 */
1068 0x0000, /* � - 157 */
1069 0x0000, /* ž - 158 */
1070 0x8003, /* Ÿ - 159 */
1071 0x0008, /*   - 160 */
1072 0x0008, /* ¡ - 161 */
1073 0x0048, /* ¢ - 162 */
1074 0x0048, /* £ - 163 */
1075 0x0008, /* ¤ - 164 */
1076 0x0048, /* ¥ - 165 */
1077 0x0048, /* ¦ - 166 */
1078 0x0008, /* § - 167 */
1079 0x0408, /* ¨ - 168 */
1080 0x0008, /* © - 169 */
1081 0x0400, /* ª - 170 */
1082 0x0008, /* « - 171 */
1083 0x0048, /* ¬ - 172 */
1084 0x0408, /* ­ - 173 */
1085 0x0008, /* ® - 174 */
1086 0x0448, /* ¯ - 175 */
1087 0x0008, /* ° - 176 */
1088 0x0008, /* ± - 177 */
1089 0x0000, /* ² - 178 */
1090 0x0000, /* ³ - 179 */
1091 0x0408, /* ´ - 180 */
1092 0x0008, /* µ - 181 */
1093 0x0008, /* ¶ - 182 */
1094 0x0008, /* · - 183 */
1095 0x0408, /* ¸ - 184 */
1096 0x0000, /* ¹ - 185 */
1097 0x0400, /* º - 186 */
1098 0x0008, /* » - 187 */
1099 0x0000, /* ¼ - 188 */
1100 0x0000, /* ½ - 189 */
1101 0x0000, /* ¾ - 190 */
1102 0x0008, /* ¿ - 191 */
1103 0x8003, /* À - 192 */
1104 0x8003, /* Á - 193 */
1105 0x8003, /* Â - 194 */
1106 0x8003, /* Ã - 195 */
1107 0x8003, /* Ä - 196 */
1108 0x8003, /* Å - 197 */
1109 0x8000, /* Æ - 198 */
1110 0x8003, /* Ç - 199 */
1111 0x8003, /* È - 200 */
1112 0x8003, /* É - 201 */
1113 0x8003, /* Ê - 202 */
1114 0x8003, /* Ë - 203 */
1115 0x8003, /* Ì - 204 */
1116 0x8003, /* Í - 205 */
1117 0x8003, /* Î - 206 */
1118 0x8003, /* Ï - 207 */
1119 0x8000, /* Ð - 208 */
1120 0x8003, /* Ñ - 209 */
1121 0x8003, /* Ò - 210 */
1122 0x8003, /* Ó - 211 */
1123 0x8003, /* Ô - 212 */
1124 0x8003, /* Õ - 213 */
1125 0x8003, /* Ö - 214 */
1126 0x0008, /* × - 215 */
1127 0x8003, /* Ø - 216 */
1128 0x8003, /* Ù - 217 */
1129 0x8003, /* Ú - 218 */
1130 0x8003, /* Û - 219 */
1131 0x8003, /* Ü - 220 */
1132 0x8003, /* Ý - 221 */
1133 0x8000, /* Þ - 222 */
1134 0x8000, /* ß - 223 */
1135 0x8003, /* à - 224 */
1136 0x8003, /* á - 225 */
1137 0x8003, /* â - 226 */
1138 0x8003, /* ã - 227 */
1139 0x8003, /* ä - 228 */
1140 0x8003, /* å - 229 */
1141 0x8000, /* æ - 230 */
1142 0x8003, /* ç - 231 */
1143 0x8003, /* è - 232 */
1144 0x8003, /* é - 233 */
1145 0x8003, /* ê - 234 */
1146 0x8003, /* ë - 235 */
1147 0x8003, /* ì - 236 */
1148 0x8003, /* í - 237 */
1149 0x8003, /* î - 238 */
1150 0x8003, /* ï - 239 */
1151 0x8000, /* ð - 240 */
1152 0x8003, /* ñ - 241 */
1153 0x8003, /* ò - 242 */
1154 0x8003, /* ó - 243 */
1155 0x8003, /* ô - 244 */
1156 0x8003, /* õ - 245 */
1157 0x8003, /* ö - 246 */
1158 0x0008, /* ÷ - 247 */
1159 0x8003, /* ø - 248 */
1160 0x8003, /* ù - 249 */
1161 0x8003, /* ú - 250 */
1162 0x8003, /* û - 251 */
1163 0x8003, /* ü - 252 */
1164 0x8003, /* ý - 253 */
1165 0x8000, /* þ - 254 */
1166 0x8003 /* ÿ - 255 */
1169 /******************************************************************************
1170 * GetStringType16 [OLE2NLS.7]
1172 BOOL16 WINAPI GetStringType16(LCID locale,DWORD dwInfoType,LPCSTR src,
1173 INT16 cchSrc,LPWORD chartype)
1175 return GetStringTypeEx32A(locale,dwInfoType,src,cchSrc,chartype);
1177 /******************************************************************************
1178 * GetStringType32A [KERNEL32.396]
1180 BOOL32 WINAPI GetStringType32A(LCID locale,DWORD dwInfoType,LPCSTR src,
1181 INT32 cchSrc,LPWORD chartype)
1183 return GetStringTypeEx32A(locale,dwInfoType,src,cchSrc,chartype);
1186 /******************************************************************************
1187 * GetStringTypeEx32A [KERNEL32.397]
1189 * FIXME: Ignores the locale.
1191 BOOL32 WINAPI GetStringTypeEx32A(LCID locale,DWORD dwInfoType,LPCSTR src,
1192 INT32 cchSrc,LPWORD chartype)
1194 int i;
1196 if ((src==NULL) || (chartype==NULL) || (src==(LPSTR)chartype))
1198 SetLastError(ERROR_INVALID_PARAMETER);
1199 return FALSE;
1202 if (cchSrc==-1)
1203 cchSrc=lstrlen32A(src)+1;
1205 switch (dwInfoType) {
1206 case CT_CTYPE1:
1207 for (i=0;i<cchSrc;i++)
1209 chartype[i] = 0;
1210 if (isdigit(src[i])) chartype[i]|=C1_DIGIT;
1211 if (isalpha(src[i])) chartype[i]|=C1_ALPHA;
1212 if (islower(src[i])) chartype[i]|=C1_LOWER;
1213 if (isupper(src[i])) chartype[i]|=C1_UPPER;
1214 if (isspace(src[i])) chartype[i]|=C1_SPACE;
1215 if (ispunct(src[i])) chartype[i]|=C1_PUNCT;
1216 if (iscntrl(src[i])) chartype[i]|=C1_CNTRL;
1217 /* FIXME: isblank() is a GNU extension */
1218 /* if (isblank(src[i])) chartype[i]|=C1_BLANK; */
1219 if ((src[i] == ' ') || (src[i] == '\t')) chartype[i]|=C1_BLANK;
1220 /* C1_XDIGIT */
1222 return TRUE;
1224 case CT_CTYPE2:
1225 for (i=0;i<cchSrc;i++)
1227 chartype[i]=(WORD)CT_CType2_LUT[i];
1229 return TRUE;
1231 case CT_CTYPE3:
1232 for (i=0;i<cchSrc;i++)
1234 chartype[i]=CT_CType3_LUT[i];
1236 return TRUE;
1238 default:
1239 ERR(ole,"Unknown dwInfoType:%ld\n",dwInfoType);
1240 return FALSE;
1244 /******************************************************************************
1245 * GetStringType32W [KERNEL32.399]
1247 * NOTES
1248 * Yes, this is missing LCID locale. MS fault.
1250 BOOL32 WINAPI GetStringType32W(DWORD dwInfoType,LPCWSTR src,INT32 cchSrc,
1251 LPWORD chartype)
1253 return GetStringTypeEx32W(0/*defaultlocale*/,dwInfoType,src,cchSrc,chartype);
1256 /******************************************************************************
1257 * GetStringTypeEx32W [KERNEL32.398]
1259 * FIXME: unicode chars are assumed chars
1261 BOOL32 WINAPI GetStringTypeEx32W(LCID locale,DWORD dwInfoType,LPCWSTR src,
1262 INT32 cchSrc,LPWORD chartype)
1264 int i;
1267 if (cchSrc==-1)
1268 cchSrc=lstrlen32W(src)+1;
1270 switch (dwInfoType) {
1271 case CT_CTYPE2:
1272 FIXME(ole,"CT_CTYPE2 not supported.\n");
1273 return FALSE;
1274 case CT_CTYPE3:
1275 FIXME(ole,"CT_CTYPE3 not supported.\n");
1276 return FALSE;
1277 default:break;
1279 for (i=0;i<cchSrc;i++) {
1280 chartype[i] = 0;
1281 if (isdigit(src[i])) chartype[i]|=C1_DIGIT;
1282 if (isalpha(src[i])) chartype[i]|=C1_ALPHA;
1283 if (islower(src[i])) chartype[i]|=C1_LOWER;
1284 if (isupper(src[i])) chartype[i]|=C1_UPPER;
1285 if (isspace(src[i])) chartype[i]|=C1_SPACE;
1286 if (ispunct(src[i])) chartype[i]|=C1_PUNCT;
1287 if (iscntrl(src[i])) chartype[i]|=C1_CNTRL;
1288 /* FIXME: isblank() is a GNU extension */
1289 /* if (isblank(src[i])) chartype[i]|=C1_BLANK; */
1290 if ((src[i] == ' ') || (src[i] == '\t')) chartype[i]|=C1_BLANK;
1291 /* C1_XDIGIT */
1293 return TRUE;
1296 /*****************************************************************
1297 * VerLanguageName16 [VER.10]
1299 DWORD WINAPI VerLanguageName16(UINT16 langid,LPSTR langname,UINT16 langnamelen)
1301 int i;
1302 DWORD result;
1303 char buffer[80];
1305 TRACE(ver,"(%d,%p,%d)\n",langid,langname,langnamelen);
1306 /* First, check \System\CurrentControlSet\control\Nls\Locale\<langid>
1307 * from the registry.
1309 sprintf(buffer,
1310 "\\System\\CurrentControlSet\\control\\Nls\\Locale\\%08x",
1311 langid);
1312 result = RegQueryValue16(HKEY_LOCAL_MACHINE, buffer, langname,
1313 (LPDWORD)&langnamelen);
1314 if (result == ERROR_SUCCESS) {
1315 langname[langnamelen-1]='\0';
1316 return langnamelen;
1318 /* if that fails, use the internal table */
1319 for (i=0;languages[i].langid!=0;i++)
1320 if (langid==languages[i].langid)
1321 break;
1322 strncpy(langname,languages[i].langname,langnamelen);
1323 langname[langnamelen-1]='\0';
1324 return strlen(languages[i].langname);
1327 /*****************************************************************
1328 * VerLanguageName32A [VERSION.9]
1330 DWORD WINAPI VerLanguageName32A(UINT32 langid,LPSTR langname,
1331 UINT32 langnamelen)
1333 return VerLanguageName16(langid,langname,langnamelen);
1336 /*****************************************************************
1337 * VerLanguageName32W [VERSION.10]
1339 DWORD WINAPI VerLanguageName32W(UINT32 langid,LPWSTR langname,
1340 UINT32 langnamelen)
1342 int i;
1343 LPWSTR keyname;
1344 DWORD result;
1345 char buffer[80];
1347 /* First, check \System\CurrentControlSet\control\Nls\Locale\<langid>
1348 * from the registry.
1350 sprintf(buffer,
1351 "\\System\\CurrentControlSet\\control\\Nls\\Locale\\%08x",
1352 langid);
1353 keyname = HEAP_strdupAtoW( GetProcessHeap(), 0, buffer );
1354 result = RegQueryValue32W(HKEY_LOCAL_MACHINE, keyname, langname,
1355 (LPDWORD)&langnamelen);
1356 HeapFree( GetProcessHeap(), 0, keyname );
1357 if (result != ERROR_SUCCESS) {
1358 /* if that fails, use the internal table */
1359 for (i=0;languages[i].langid!=0;i++)
1360 if (langid==languages[i].langid)
1361 break;
1362 lstrcpyAtoW( langname, languages[i].langname );
1363 langnamelen = strlen(languages[i].langname);
1364 /* same as strlenW(langname); */
1366 return langnamelen;
1369 static const unsigned char LCM_Unicode_LUT[] = {
1370 6 , 3, /* - 1 */
1371 6 , 4, /* - 2 */
1372 6 , 5, /* - 3 */
1373 6 , 6, /* - 4 */
1374 6 , 7, /* - 5 */
1375 6 , 8, /* - 6 */
1376 6 , 9, /* - 7 */
1377 6 , 10, /* - 8 */
1378 7 , 5, /* - 9 */
1379 7 , 6, /* - 10 */
1380 7 , 7, /* - 11 */
1381 7 , 8, /* - 12 */
1382 7 , 9, /* - 13 */
1383 6 , 11, /* - 14 */
1384 6 , 12, /* - 15 */
1385 6 , 13, /* - 16 */
1386 6 , 14, /* - 17 */
1387 6 , 15, /* - 18 */
1388 6 , 16, /* - 19 */
1389 6 , 17, /* - 20 */
1390 6 , 18, /* - 21 */
1391 6 , 19, /* - 22 */
1392 6 , 20, /* - 23 */
1393 6 , 21, /* - 24 */
1394 6 , 22, /* - 25 */
1395 6 , 23, /* - 26 */
1396 6 , 24, /* - 27 */
1397 6 , 25, /* - 28 */
1398 6 , 26, /* - 29 */
1399 6 , 27, /* - 30 */
1400 6 , 28, /* - 31 */
1401 7 , 2, /* - 32 */
1402 7 , 28, /* ! - 33 */
1403 7 , 29, /* " - 34 */ /* " */
1404 7 , 31, /* # - 35 */
1405 7 , 33, /* $ - 36 */
1406 7 , 35, /* % - 37 */
1407 7 , 37, /* & - 38 */
1408 6 , 128, /* ' - 39 */
1409 7 , 39, /* ( - 40 */
1410 7 , 42, /* ) - 41 */
1411 7 , 45, /* * - 42 */
1412 8 , 3, /* + - 43 */
1413 7 , 47, /* , - 44 */
1414 6 , 130, /* - - 45 */
1415 7 , 51, /* . - 46 */
1416 7 , 53, /* / - 47 */
1417 12 , 3, /* 0 - 48 */
1418 12 , 33, /* 1 - 49 */
1419 12 , 51, /* 2 - 50 */
1420 12 , 70, /* 3 - 51 */
1421 12 , 88, /* 4 - 52 */
1422 12 , 106, /* 5 - 53 */
1423 12 , 125, /* 6 - 54 */
1424 12 , 144, /* 7 - 55 */
1425 12 , 162, /* 8 - 56 */
1426 12 , 180, /* 9 - 57 */
1427 7 , 55, /* : - 58 */
1428 7 , 58, /* ; - 59 */
1429 8 , 14, /* < - 60 */
1430 8 , 18, /* = - 61 */
1431 8 , 20, /* > - 62 */
1432 7 , 60, /* ? - 63 */
1433 7 , 62, /* @ - 64 */
1434 14 , 2, /* A - 65 */
1435 14 , 9, /* B - 66 */
1436 14 , 10, /* C - 67 */
1437 14 , 26, /* D - 68 */
1438 14 , 33, /* E - 69 */
1439 14 , 35, /* F - 70 */
1440 14 , 37, /* G - 71 */
1441 14 , 44, /* H - 72 */
1442 14 , 50, /* I - 73 */
1443 14 , 53, /* J - 74 */
1444 14 , 54, /* K - 75 */
1445 14 , 72, /* L - 76 */
1446 14 , 81, /* M - 77 */
1447 14 , 112, /* N - 78 */
1448 14 , 124, /* O - 79 */
1449 14 , 126, /* P - 80 */
1450 14 , 137, /* Q - 81 */
1451 14 , 138, /* R - 82 */
1452 14 , 145, /* S - 83 */
1453 14 , 153, /* T - 84 */
1454 14 , 159, /* U - 85 */
1455 14 , 162, /* V - 86 */
1456 14 , 164, /* W - 87 */
1457 14 , 166, /* X - 88 */
1458 14 , 167, /* Y - 89 */
1459 14 , 169, /* Z - 90 */
1460 7 , 63, /* [ - 91 */
1461 7 , 65, /* \ - 92 */
1462 7 , 66, /* ] - 93 */
1463 7 , 67, /* ^ - 94 */
1464 7 , 68, /* _ - 95 */
1465 7 , 72, /* ` - 96 */
1466 14 , 2, /* a - 97 */
1467 14 , 9, /* b - 98 */
1468 14 , 10, /* c - 99 */
1469 14 , 26, /* d - 100 */
1470 14 , 33, /* e - 101 */
1471 14 , 35, /* f - 102 */
1472 14 , 37, /* g - 103 */
1473 14 , 44, /* h - 104 */
1474 14 , 50, /* i - 105 */
1475 14 , 53, /* j - 106 */
1476 14 , 54, /* k - 107 */
1477 14 , 72, /* l - 108 */
1478 14 , 81, /* m - 109 */
1479 14 , 112, /* n - 110 */
1480 14 , 124, /* o - 111 */
1481 14 , 126, /* p - 112 */
1482 14 , 137, /* q - 113 */
1483 14 , 138, /* r - 114 */
1484 14 , 145, /* s - 115 */
1485 14 , 153, /* t - 116 */
1486 14 , 159, /* u - 117 */
1487 14 , 162, /* v - 118 */
1488 14 , 164, /* w - 119 */
1489 14 , 166, /* x - 120 */
1490 14 , 167, /* y - 121 */
1491 14 , 169, /* z - 122 */
1492 7 , 74, /* { - 123 */
1493 7 , 76, /* | - 124 */
1494 7 , 78, /* } - 125 */
1495 7 , 80, /* ~ - 126 */
1496 6 , 29, /* \x7f - 127 */
1497 6 , 30, /* € - 128 */
1498 6 , 31, /* � - 129 */
1499 7 , 123, /* ‚ - 130 */
1500 14 , 35, /* ƒ - 131 */
1501 7 , 127, /* „ - 132 */
1502 10 , 21, /* … - 133 */
1503 10 , 15, /* † - 134 */
1504 10 , 16, /* ‡ - 135 */
1505 7 , 67, /* ˆ - 136 */
1506 10 , 22, /* ‰ - 137 */
1507 14 , 145, /* Š - 138 */
1508 7 , 136, /* ‹ - 139 */
1509 14 + 16 , 124, /* Π- 140 */
1510 6 , 43, /* � - 141 */
1511 6 , 44, /* Ž - 142 */
1512 6 , 45, /* � - 143 */
1513 6 , 46, /* � - 144 */
1514 7 , 121, /* ‘ - 145 */
1515 7 , 122, /* ’ - 146 */
1516 7 , 125, /* “ - 147 */
1517 7 , 126, /* ” - 148 */
1518 10 , 17, /* • - 149 */
1519 6 , 137, /* – - 150 */
1520 6 , 139, /* — - 151 */
1521 7 , 93, /* ˜ - 152 */
1522 14 , 156, /* ™ - 153 */
1523 14 , 145, /* š - 154 */
1524 7 , 137, /* › - 155 */
1525 14 + 16 , 124, /* œ - 156 */
1526 6 , 59, /* � - 157 */
1527 6 , 60, /* ž - 158 */
1528 14 , 167, /* Ÿ - 159 */
1529 7 , 4, /*   - 160 */
1530 7 , 81, /* ¡ - 161 */
1531 10 , 2, /* ¢ - 162 */
1532 10 , 3, /* £ - 163 */
1533 10 , 4, /* ¤ - 164 */
1534 10 , 5, /* ¥ - 165 */
1535 7 , 82, /* ¦ - 166 */
1536 10 , 6, /* § - 167 */
1537 7 , 83, /* ¨ - 168 */
1538 10 , 7, /* © - 169 */
1539 14 , 2, /* ª - 170 */
1540 8 , 24, /* « - 171 */
1541 10 , 8, /* ¬ - 172 */
1542 6 , 131, /* ­ - 173 */
1543 10 , 9, /* ® - 174 */
1544 7 , 84, /* ¯ - 175 */
1545 10 , 10, /* ° - 176 */
1546 8 , 23, /* ± - 177 */
1547 12 , 51, /* ² - 178 */
1548 12 , 70, /* ³ - 179 */
1549 7 , 85, /* ´ - 180 */
1550 10 , 11, /* µ - 181 */
1551 10 , 12, /* ¶ - 182 */
1552 10 , 13, /* · - 183 */
1553 7 , 86, /* ¸ - 184 */
1554 12 , 33, /* ¹ - 185 */
1555 14 , 124, /* º - 186 */
1556 8 , 26, /* » - 187 */
1557 12 , 21, /* ¼ - 188 */
1558 12 , 25, /* ½ - 189 */
1559 12 , 29, /* ¾ - 190 */
1560 7 , 87, /* ¿ - 191 */
1561 14 , 2, /* À - 192 */
1562 14 , 2, /* Á - 193 */
1563 14 , 2, /* Â - 194 */
1564 14 , 2, /* Ã - 195 */
1565 14 , 2, /* Ä - 196 */
1566 14 , 2, /* Å - 197 */
1567 14 + 16 , 2, /* Æ - 198 */
1568 14 , 10, /* Ç - 199 */
1569 14 , 33, /* È - 200 */
1570 14 , 33, /* É - 201 */
1571 14 , 33, /* Ê - 202 */
1572 14 , 33, /* Ë - 203 */
1573 14 , 50, /* Ì - 204 */
1574 14 , 50, /* Í - 205 */
1575 14 , 50, /* Î - 206 */
1576 14 , 50, /* Ï - 207 */
1577 14 , 26, /* Ð - 208 */
1578 14 , 112, /* Ñ - 209 */
1579 14 , 124, /* Ò - 210 */
1580 14 , 124, /* Ó - 211 */
1581 14 , 124, /* Ô - 212 */
1582 14 , 124, /* Õ - 213 */
1583 14 , 124, /* Ö - 214 */
1584 8 , 28, /* × - 215 */
1585 14 , 124, /* Ø - 216 */
1586 14 , 159, /* Ù - 217 */
1587 14 , 159, /* Ú - 218 */
1588 14 , 159, /* Û - 219 */
1589 14 , 159, /* Ü - 220 */
1590 14 , 167, /* Ý - 221 */
1591 14 + 32 , 153, /* Þ - 222 */
1592 14 + 48 , 145, /* ß - 223 */
1593 14 , 2, /* à - 224 */
1594 14 , 2, /* á - 225 */
1595 14 , 2, /* â - 226 */
1596 14 , 2, /* ã - 227 */
1597 14 , 2, /* ä - 228 */
1598 14 , 2, /* å - 229 */
1599 14 + 16 , 2, /* æ - 230 */
1600 14 , 10, /* ç - 231 */
1601 14 , 33, /* è - 232 */
1602 14 , 33, /* é - 233 */
1603 14 , 33, /* ê - 234 */
1604 14 , 33, /* ë - 235 */
1605 14 , 50, /* ì - 236 */
1606 14 , 50, /* í - 237 */
1607 14 , 50, /* î - 238 */
1608 14 , 50, /* ï - 239 */
1609 14 , 26, /* ð - 240 */
1610 14 , 112, /* ñ - 241 */
1611 14 , 124, /* ò - 242 */
1612 14 , 124, /* ó - 243 */
1613 14 , 124, /* ô - 244 */
1614 14 , 124, /* õ - 245 */
1615 14 , 124, /* ö - 246 */
1616 8 , 29, /* ÷ - 247 */
1617 14 , 124, /* ø - 248 */
1618 14 , 159, /* ù - 249 */
1619 14 , 159, /* ú - 250 */
1620 14 , 159, /* û - 251 */
1621 14 , 159, /* ü - 252 */
1622 14 , 167, /* ý - 253 */
1623 14 + 32 , 153, /* þ - 254 */
1624 14 , 167 /* ÿ - 255 */ };
1626 static const unsigned char LCM_Unicode_LUT_2[] = { 33, 44, 145 };
1628 #define LCM_Diacritic_Start 131
1630 static const unsigned char LCM_Diacritic_LUT[] = {
1631 123, /* ƒ - 131 */
1632 2, /* „ - 132 */
1633 2, /* … - 133 */
1634 2, /* † - 134 */
1635 2, /* ‡ - 135 */
1636 3, /* ˆ - 136 */
1637 2, /* ‰ - 137 */
1638 20, /* Š - 138 */
1639 2, /* ‹ - 139 */
1640 2, /* Π- 140 */
1641 2, /* � - 141 */
1642 2, /* Ž - 142 */
1643 2, /* � - 143 */
1644 2, /* � - 144 */
1645 2, /* ‘ - 145 */
1646 2, /* ’ - 146 */
1647 2, /* “ - 147 */
1648 2, /* ” - 148 */
1649 2, /* • - 149 */
1650 2, /* – - 150 */
1651 2, /* — - 151 */
1652 2, /* ˜ - 152 */
1653 2, /* ™ - 153 */
1654 20, /* š - 154 */
1655 2, /* › - 155 */
1656 2, /* œ - 156 */
1657 2, /* � - 157 */
1658 2, /* ž - 158 */
1659 19, /* Ÿ - 159 */
1660 2, /*   - 160 */
1661 2, /* ¡ - 161 */
1662 2, /* ¢ - 162 */
1663 2, /* £ - 163 */
1664 2, /* ¤ - 164 */
1665 2, /* ¥ - 165 */
1666 2, /* ¦ - 166 */
1667 2, /* § - 167 */
1668 2, /* ¨ - 168 */
1669 2, /* © - 169 */
1670 3, /* ª - 170 */
1671 2, /* « - 171 */
1672 2, /* ¬ - 172 */
1673 2, /* ­ - 173 */
1674 2, /* ® - 174 */
1675 2, /* ¯ - 175 */
1676 2, /* ° - 176 */
1677 2, /* ± - 177 */
1678 2, /* ² - 178 */
1679 2, /* ³ - 179 */
1680 2, /* ´ - 180 */
1681 2, /* µ - 181 */
1682 2, /* ¶ - 182 */
1683 2, /* · - 183 */
1684 2, /* ¸ - 184 */
1685 2, /* ¹ - 185 */
1686 3, /* º - 186 */
1687 2, /* » - 187 */
1688 2, /* ¼ - 188 */
1689 2, /* ½ - 189 */
1690 2, /* ¾ - 190 */
1691 2, /* ¿ - 191 */
1692 15, /* À - 192 */
1693 14, /* Á - 193 */
1694 18, /* Â - 194 */
1695 25, /* Ã - 195 */
1696 19, /* Ä - 196 */
1697 26, /* Å - 197 */
1698 2, /* Æ - 198 */
1699 28, /* Ç - 199 */
1700 15, /* È - 200 */
1701 14, /* É - 201 */
1702 18, /* Ê - 202 */
1703 19, /* Ë - 203 */
1704 15, /* Ì - 204 */
1705 14, /* Í - 205 */
1706 18, /* Î - 206 */
1707 19, /* Ï - 207 */
1708 104, /* Ð - 208 */
1709 25, /* Ñ - 209 */
1710 15, /* Ò - 210 */
1711 14, /* Ó - 211 */
1712 18, /* Ô - 212 */
1713 25, /* Õ - 213 */
1714 19, /* Ö - 214 */
1715 2, /* × - 215 */
1716 33, /* Ø - 216 */
1717 15, /* Ù - 217 */
1718 14, /* Ú - 218 */
1719 18, /* Û - 219 */
1720 19, /* Ü - 220 */
1721 14, /* Ý - 221 */
1722 2, /* Þ - 222 */
1723 2, /* ß - 223 */
1724 15, /* à - 224 */
1725 14, /* á - 225 */
1726 18, /* â - 226 */
1727 25, /* ã - 227 */
1728 19, /* ä - 228 */
1729 26, /* å - 229 */
1730 2, /* æ - 230 */
1731 28, /* ç - 231 */
1732 15, /* è - 232 */
1733 14, /* é - 233 */
1734 18, /* ê - 234 */
1735 19, /* ë - 235 */
1736 15, /* ì - 236 */
1737 14, /* í - 237 */
1738 18, /* î - 238 */
1739 19, /* ï - 239 */
1740 104, /* ð - 240 */
1741 25, /* ñ - 241 */
1742 15, /* ò - 242 */
1743 14, /* ó - 243 */
1744 18, /* ô - 244 */
1745 25, /* õ - 245 */
1746 19, /* ö - 246 */
1747 2, /* ÷ - 247 */
1748 33, /* ø - 248 */
1749 15, /* ù - 249 */
1750 14, /* ú - 250 */
1751 18, /* û - 251 */
1752 19, /* ü - 252 */
1753 14, /* ý - 253 */
1754 2, /* þ - 254 */
1755 19, /* ÿ - 255 */
1758 static int OLE2NLS_isPunctuation(unsigned char c)
1760 /* "punctuation character" in this context is a character which is
1761 considered "less important" during word sort comparison.
1762 See LCMapString implementation for the precise definition
1763 of "less important". */
1765 return (LCM_Unicode_LUT[-2+2*c]==6);
1768 /******************************************************************************
1769 * identity [Internal]
1771 static int identity(int c)
1773 return c;
1776 /*************************************************************************
1777 * LCMapString32A [KERNEL32.492]
1779 * Convert a string, or generate a sort key from it.
1781 * If (mapflags & LCMAP_SORTKEY), the function will generate
1782 * a sort key for the source string. Else, it will convert it
1783 * accordingly to the flags LCMAP_UPPERCASE, LCMAP_LOWERCASE,...
1785 * RETURNS
1786 * Error : 0.
1787 * Success : length of the result string.
1789 * NOTES
1790 * If called with scrlen = -1, the function will compute the length
1791 * of the 0-terminated string strsrc by itself.
1793 * If called with dstlen = 0, returns the buffer length that
1794 * would be required.
1796 * NORM_IGNOREWIDTH means to compare ASCII and Unicode characters
1797 * as if they are equal. Since Wine separates ASCII and Unicode into
1798 * separate functions, we shouldn't have to do anything for this flag.
1799 * I added it to the list of flags that don't need a fixme message
1800 * to make MS Word 95 not print several thousand fixme messages for
1801 * this function.
1803 INT32 WINAPI LCMapString32A(
1804 LCID lcid /* locale identifier created with MAKELCID;
1805 LOCALE_SYSTEM_DEFAULT and LOCALE_USER_DEFAULT are
1806 predefined values. */,
1807 DWORD mapflags /* flags */,
1808 LPCSTR srcstr /* source buffer */,
1809 INT32 srclen /* source length */,
1810 LPSTR dststr /* destination buffer */,
1811 INT32 dstlen /* destination buffer length */)
1813 int i;
1815 TRACE(string,"(0x%04lx,0x%08lx,%s,%d,%p,%d)\n",
1816 lcid,mapflags,srcstr,srclen,dststr,dstlen);
1818 if ( ((dstlen!=0) && (dststr==NULL)) || (srcstr==NULL) )
1820 ERR(ole, "(src=%s,dest=%s): Invalid NULL string\n", srcstr, dststr);
1821 SetLastError(ERROR_INVALID_PARAMETER);
1822 return 0;
1824 if (srclen == -1)
1825 srclen = lstrlen32A(srcstr) + 1 ; /* (include final '\0') */
1827 if (mapflags & ~ ( LCMAP_UPPERCASE | LCMAP_LOWERCASE | LCMAP_SORTKEY |
1828 NORM_IGNORECASE | NORM_IGNORENONSPACE | SORT_STRINGSORT |
1829 NORM_IGNOREWIDTH) )
1831 FIXME(string,"(0x%04lx,0x%08lx,%p,%d,%p,%d): "
1832 "unimplemented flags: 0x%08lx\n",
1833 lcid,mapflags,srcstr,srclen,dststr,dstlen,mapflags);
1836 if ( !(mapflags & LCMAP_SORTKEY) )
1838 int (*f)(int)=identity;
1840 if (dstlen==0)
1841 return srclen; /* dstlen=0 means "do nothing but return required length" */
1842 if (dstlen<srclen)
1843 srclen=dstlen; /* No, this case is not an error under Windows 95.
1844 And no '\0' gets written. */
1845 if (mapflags & LCMAP_UPPERCASE)
1846 f = toupper;
1847 else if (mapflags & LCMAP_LOWERCASE)
1848 f = tolower;
1849 for (i=0; i < srclen; i++)
1850 dststr[i] = (CHAR) f(srcstr[i]);
1851 return srclen;
1854 /* else ... (mapflags & LCMAP_SORTKEY) */
1856 int unicode_len=0;
1857 int case_len=0;
1858 int diacritic_len=0;
1859 int delayed_punctuation_len=0;
1860 char *case_component;
1861 char *diacritic_component;
1862 char *delayed_punctuation_component;
1863 int room,count;
1864 int flag_stringsort = mapflags & SORT_STRINGSORT;
1866 /* compute how much room we will need */
1867 for (i=0;i<srclen;i++)
1869 int ofs;
1870 unsigned char source_char = srcstr[i];
1871 if (source_char!='\0')
1873 if (flag_stringsort || !OLE2NLS_isPunctuation(source_char))
1875 unicode_len++;
1876 if ( LCM_Unicode_LUT[-2+2*source_char] & ~15 )
1877 unicode_len++; /* double letter */
1879 else
1881 delayed_punctuation_len++;
1885 if (isupper(source_char))
1886 case_len=unicode_len;
1888 ofs = source_char - LCM_Diacritic_Start;
1889 if ((ofs>=0) && (LCM_Diacritic_LUT[ofs]!=2))
1890 diacritic_len=unicode_len;
1893 if (mapflags & NORM_IGNORECASE)
1894 case_len=0;
1895 if (mapflags & NORM_IGNORENONSPACE)
1896 diacritic_len=0;
1898 room = 2 * unicode_len /* "unicode" component */
1899 + diacritic_len /* "diacritic" component */
1900 + case_len /* "case" component */
1901 + 4 * delayed_punctuation_len /* punctuation in word sort mode */
1902 + 4 /* four '\1' separators */
1903 + 1 ; /* terminal '\0' */
1904 if (dstlen==0)
1905 return room;
1906 else if (dstlen<room)
1908 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1909 return 0;
1912 /*FIXME the Pointercheck should not be nessesary */
1913 if (IsBadWritePtr32 (dststr,room))
1914 { ERR (string,"bad destination buffer (dststr) : %p,%d\n",dststr,dstlen);
1915 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1916 return 0;
1919 /* locate each component, write separators */
1920 diacritic_component = dststr + 2*unicode_len ;
1921 *diacritic_component++ = '\1';
1922 case_component = diacritic_component + diacritic_len ;
1923 *case_component++ = '\1';
1924 delayed_punctuation_component = case_component + case_len ;
1925 *delayed_punctuation_component++ = '\1';
1926 *delayed_punctuation_component++ = '\1';
1928 /* read source string char by char, write
1929 corresponding weight in each component. */
1930 for (i=0,count=0;i<srclen;i++)
1932 unsigned char source_char=srcstr[i];
1933 if (source_char!='\0')
1935 int type,longcode;
1936 type = LCM_Unicode_LUT[-2+2*source_char];
1937 longcode = type >> 4;
1938 type &= 15;
1939 if (!flag_stringsort && OLE2NLS_isPunctuation(source_char))
1941 UINT16 encrypted_location = (1<<15) + 7 + 4*count;
1942 *delayed_punctuation_component++ = (unsigned char) (encrypted_location>>8);
1943 *delayed_punctuation_component++ = (unsigned char) (encrypted_location&255);
1944 /* big-endian is used here because it lets string comparison be
1945 compatible with numerical comparison */
1947 *delayed_punctuation_component++ = type;
1948 *delayed_punctuation_component++ = LCM_Unicode_LUT[-1+2*source_char];
1949 /* assumption : a punctuation character is never a
1950 double or accented letter */
1952 else
1954 dststr[2*count] = type;
1955 dststr[2*count+1] = LCM_Unicode_LUT[-1+2*source_char];
1956 if (longcode)
1958 if (count<case_len)
1959 case_component[count] = ( isupper(source_char) ? 18 : 2 ) ;
1960 if (count<diacritic_len)
1961 diacritic_component[count] = 2; /* assumption: a double letter
1962 is never accented */
1963 count++;
1965 dststr[2*count] = type;
1966 dststr[2*count+1] = *(LCM_Unicode_LUT_2 - 1 + longcode);
1967 /* 16 in the first column of LCM_Unicode_LUT --> longcode = 1
1968 32 in the first column of LCM_Unicode_LUT --> longcode = 2
1969 48 in the first column of LCM_Unicode_LUT --> longcode = 3 */
1972 if (count<case_len)
1973 case_component[count] = ( isupper(source_char) ? 18 : 2 ) ;
1974 if (count<diacritic_len)
1976 int ofs = source_char - LCM_Diacritic_Start;
1977 diacritic_component[count] = (ofs>=0 ? LCM_Diacritic_LUT[ofs] : 2);
1979 count++;
1983 dststr[room-1] = '\0';
1984 return room;
1988 /*************************************************************************
1989 * LCMapString32W [KERNEL32.493]
1991 * Convert a string, or generate a sort key from it.
1993 * NOTE
1995 * See LCMapString32A for documentation
1997 INT32 WINAPI LCMapString32W(
1998 LCID lcid,DWORD mapflags,LPCWSTR srcstr,INT32 srclen,LPWSTR dststr,
1999 INT32 dstlen)
2001 int i;
2003 TRACE(string,"(0x%04lx,0x%08lx,%p,%d,%p,%d)\n",
2004 lcid,mapflags,srcstr,srclen,dststr,dstlen);
2006 if ( ((dstlen!=0) && (dststr==NULL)) || (srcstr==NULL) )
2008 ERR(ole, "(src=%p,dst=%p): Invalid NULL string\n", srcstr, dststr);
2009 SetLastError(ERROR_INVALID_PARAMETER);
2010 return 0;
2012 if (srclen==-1)
2013 srclen = lstrlen32W(srcstr)+1;
2014 if (mapflags & LCMAP_SORTKEY)
2016 FIXME(string,"(0x%04lx,0x%08lx,%p,%d,%p,%d): "
2017 "unimplemented flags: 0x%08lx\n",
2018 lcid,mapflags,srcstr,srclen,dststr,dstlen,mapflags);
2019 return 0;
2021 else
2023 int (*f)(int)=identity;
2025 if (dstlen==0)
2026 return srclen;
2027 if (dstlen<srclen)
2028 return 0;
2029 if (mapflags & LCMAP_UPPERCASE)
2030 f = toupper;
2031 else if (mapflags & LCMAP_LOWERCASE)
2032 f = tolower;
2033 for (i=0; i < srclen; i++)
2034 dststr[i] = (WCHAR) f(srcstr[i]);
2035 return srclen;
2039 /***********************************************************************
2040 * CompareString16 (OLE2NLS.8)
2042 UINT16 WINAPI CompareString16(DWORD lcid,DWORD fdwStyle,
2043 LPCSTR s1,DWORD l1,LPCSTR s2,DWORD l2)
2045 return (UINT16)CompareString32A(lcid,fdwStyle,s1,l1,s2,l2);
2048 /******************************************************************************
2049 * CompareString32A [KERNEL32.143]
2050 * Compares two strings using locale
2052 * RETURNS
2054 * success: CSTR_LESS_THAN, CSTR_EQUAL, CSTR_GREATER_THAN
2055 * failure: 0
2057 * NOTES
2059 * Defaults to a word sort, but uses a string sort if
2060 * SORT_STRINGSORT is set.
2061 * Calls SetLastError for ERROR_INVALID_FLAGS, ERROR_INVALID_PARAMETER.
2063 * BUGS
2065 * This implementation ignores the locale
2067 * FIXME
2069 * Quite inefficient.
2071 UINT32 WINAPI CompareString32A(
2072 DWORD lcid, /* locale ID */
2073 DWORD fdwStyle, /* comparison-style options */
2074 LPCSTR s1, /* first string */
2075 DWORD l1, /* length of first string */
2076 LPCSTR s2, /* second string */
2077 DWORD l2) /* length of second string */
2079 int mapstring_flags;
2080 int len1,len2;
2081 int result;
2082 LPSTR sk1,sk2;
2083 TRACE(ole,"%s and %s\n",
2084 debugstr_a (s1), debugstr_a (s2));
2086 if ( (s1==NULL) || (s2==NULL) )
2088 ERR(ole, "(s1=%s,s2=%s): Invalid NULL string\n", s1, s2);
2089 SetLastError(ERROR_INVALID_PARAMETER);
2090 return 0;
2093 if(fdwStyle & NORM_IGNORESYMBOLS)
2094 FIXME(ole, "IGNORESYMBOLS not supported\n");
2096 mapstring_flags = LCMAP_SORTKEY | fdwStyle ;
2097 len1 = LCMapString32A(lcid,mapstring_flags,s1,l1,NULL,0);
2098 len2 = LCMapString32A(lcid,mapstring_flags,s2,l2,NULL,0);
2100 if ((len1==0)||(len2==0))
2101 return 0; /* something wrong happened */
2103 sk1 = (LPSTR)HeapAlloc(GetProcessHeap(),0,len1);
2104 sk2 = (LPSTR)HeapAlloc(GetProcessHeap(),0,len2);
2105 if ( (!LCMapString32A(lcid,mapstring_flags,s1,l1,sk1,len1))
2106 || (!LCMapString32A(lcid,mapstring_flags,s2,l2,sk2,len2)) )
2108 ERR(ole,"Bug in LCmapString32A.\n");
2109 result = 0;
2111 else
2113 /* strcmp doesn't necessarily return -1, 0, or 1 */
2114 result = strcmp(sk1,sk2);
2116 HeapFree(GetProcessHeap(),0,sk1);
2117 HeapFree(GetProcessHeap(),0,sk2);
2119 if (result < 0)
2120 return 1;
2121 if (result == 0)
2122 return 2;
2124 /* must be greater, if we reach this point */
2125 return 3;
2128 /******************************************************************************
2129 * CompareString32W [KERNEL32.144]
2130 * This implementation ignores the locale
2131 * FIXME : Does only string sort. Should
2132 * be reimplemented the same way as CompareString32A.
2134 UINT32 WINAPI CompareString32W(DWORD lcid, DWORD fdwStyle,
2135 LPCWSTR s1, DWORD l1, LPCWSTR s2,DWORD l2)
2137 int len,ret;
2138 if(fdwStyle & NORM_IGNORENONSPACE)
2139 FIXME(ole,"IGNORENONSPACE not supprted\n");
2140 if(fdwStyle & NORM_IGNORESYMBOLS)
2141 FIXME(ole,"IGNORESYMBOLS not supported\n");
2143 /* Is strcmp defaulting to string sort or to word sort?? */
2144 /* FIXME: Handle NORM_STRINGSORT */
2145 l1 = (l1==-1)?lstrlen32W(s1):l1;
2146 l2 = (l2==-1)?lstrlen32W(s2):l2;
2147 len = l1<l2 ? l1:l2;
2148 ret = (fdwStyle & NORM_IGNORECASE) ?
2149 lstrncmpi32W(s1,s2,len) : lstrncmp32W(s1,s2,len);
2150 /* not equal, return 1 or 3 */
2151 if(ret!=0) return ret+2;
2152 /* same len, return 2 */
2153 if(l1==l2) return 2;
2154 /* the longer one is lexically greater */
2155 return (l1<l2)? 1 : 3;
2158 /******************************************************************************
2159 * OLE_GetFormatA [Internal]
2161 * FIXME
2162 * Why is it WINAPI if internal?
2164 This function implements stuff for GetDateFormat() and
2165 GetTimeFormat().
2167 d single-digit (no leading zero) day (of month)
2168 dd two-digit day (of month)
2169 ddd short day-of-week name
2170 dddd long day-of-week name
2171 M single-digit month
2172 MM two-digit month
2173 MMM short month name
2174 MMMM full month name
2175 y two-digit year, no leading 0
2176 yy two-digit year
2177 yyyy four-digit year
2178 gg era string
2179 h hours with no leading zero (12-hour)
2180 hh hours with full two digits
2181 H hours with no leading zero (24-hour)
2182 HH hours with full two digits
2183 m minutes with no leading zero
2184 mm minutes with full two digits
2185 s seconds with no leading zero
2186 ss seconds with full two digits
2187 t time marker (A or P)
2188 tt time marker (AM, PM)
2189 '' used to quote literal characters
2190 '' (within a quoted string) indicates a literal '
2192 These functions REQUIRE valid locale, date, and format.
2194 INT32 WINAPI OLE_GetFormatA(LCID locale,
2195 DWORD flags,
2196 DWORD tflags,
2197 LPSYSTEMTIME xtime,
2198 LPCSTR _format,
2199 LPSTR date, INT32 datelen)
2201 INT32 inpos, outpos;
2202 int count, type, inquote, Overflow;
2203 char buf[40];
2204 char format[40];
2205 char * pos;
2206 int buflen;
2208 const char * _dgfmt[] = { "%d", "%02d" };
2209 const char ** dgfmt = _dgfmt - 1;
2211 /* report, for debugging */
2212 TRACE(ole, "(0x%lx,0x%lx, 0x%lx, time(d=%d,h=%d,m=%d,s=%d), fmt:\'%s\' (at %p), %p (%s), len=%d)\n",
2213 locale, flags, tflags,
2214 xtime->wDay, xtime->wHour, xtime->wMinute, xtime->wSecond,
2215 format, format, date, date, datelen);
2217 /* initalize state variables and output buffer */
2218 inpos = outpos = 0;
2219 count = 0; inquote = 0; Overflow = 0;
2220 type = '\0';
2221 date[0] = buf[0] = '\0';
2223 strcpy(format,_format);
2225 /* alter the formatstring, while it works for all languages now in wine
2226 its possible that it fails when the time looks like ss:mm:hh as example*/
2227 if (tflags & (TIME_NOMINUTESORSECONDS))
2228 { if ((pos = strstr ( format, ":mm")))
2229 { memcpy ( pos, pos+3, strlen(format)-(pos-format)-2 );
2232 if (tflags & (TIME_NOSECONDS))
2233 { if ((pos = strstr ( format, ":ss")))
2234 { memcpy ( pos, pos+3, strlen(format)-(pos-format)-2 );
2238 for (inpos = 0;; inpos++) {
2239 /* TRACE(ole, "STATE inpos=%2d outpos=%2d count=%d inquote=%d type=%c buf,date = %c,%c\n", inpos, outpos, count, inquote, type, buf[inpos], date[outpos]); */
2240 if (inquote) {
2241 if (format[inpos] == '\'') {
2242 if (format[inpos+1] == '\'') {
2243 inpos += 1;
2244 date[outpos++] = '\'';
2245 } else {
2246 inquote = 0;
2247 continue; /* we did nothing to the output */
2249 } else if (format[inpos] == '\0') {
2250 date[outpos++] = '\0';
2251 if (outpos > datelen) Overflow = 1;
2252 break;
2253 } else {
2254 date[outpos++] = format[inpos];
2255 if (outpos > datelen) {
2256 Overflow = 1;
2257 date[outpos-1] = '\0'; /* this is the last place where
2258 it's safe to write */
2259 break;
2262 } else if ( (count && (format[inpos] != type))
2263 || count == 4
2264 || (count == 2 && strchr("ghHmst", type)) )
2266 if (type == 'd') {
2267 if (count == 4) {
2268 GetLocaleInfo32A(locale,
2269 LOCALE_SDAYNAME1
2270 + xtime->wDayOfWeek - 1,
2271 buf, sizeof(buf));
2272 } else if (count == 3) {
2273 GetLocaleInfo32A(locale,
2274 LOCALE_SABBREVDAYNAME1
2275 + xtime->wDayOfWeek - 1,
2276 buf, sizeof(buf));
2277 } else {
2278 sprintf(buf, dgfmt[count], xtime->wDay);
2280 } else if (type == 'M') {
2281 if (count == 3) {
2282 GetLocaleInfo32A(locale,
2283 LOCALE_SABBREVMONTHNAME1
2284 + xtime->wMonth - 1,
2285 buf, sizeof(buf));
2286 } else if (count == 4) {
2287 GetLocaleInfo32A(locale,
2288 LOCALE_SMONTHNAME1
2289 + xtime->wMonth - 1,
2290 buf, sizeof(buf));
2291 } else {
2292 sprintf(buf, dgfmt[count], xtime->wMonth);
2294 } else if (type == 'y') {
2295 if (count == 4) {
2296 sprintf(buf, "%d", xtime->wYear);
2297 } else if (count == 3) {
2298 strcpy(buf, "yyy");
2299 WARN(ole, "unknown format, c=%c, n=%d\n", type, count);
2300 } else {
2301 sprintf(buf, dgfmt[count], xtime->wYear % 100);
2303 } else if (type == 'g') {
2304 if (count == 2) {
2305 FIXME(ole, "LOCALE_ICALENDARTYPE unimp.\n");
2306 strcpy(buf, "AD");
2307 } else {
2308 strcpy(buf, "g");
2309 WARN(ole, "unknown format, c=%c, n=%d\n", type, count);
2311 } else if (type == 'h') {
2312 /* gives us hours 1:00 -- 12:00 */
2313 sprintf(buf, dgfmt[count], (xtime->wHour-1)%12 +1);
2314 } else if (type == 'H') {
2315 /* 24-hour time */
2316 sprintf(buf, dgfmt[count], xtime->wHour);
2317 } else if ( type == 'm') {
2318 sprintf(buf, dgfmt[count], xtime->wMinute);
2319 } else if ( type == 's') {
2320 sprintf(buf, dgfmt[count], xtime->wSecond);
2321 } else if (type == 't') {
2322 if (count == 1) {
2323 sprintf(buf, "%c", (xtime->wHour < 12) ? 'A' : 'P');
2324 } else if (count == 2) {
2325 /* sprintf(buf, "%s", (xtime->wHour < 12) ? "AM" : "PM"); */
2326 GetLocaleInfo32A(locale,
2327 (xtime->wHour<12)
2328 ? LOCALE_S1159 : LOCALE_S2359,
2329 buf, sizeof(buf));
2333 /* we need to check the next char in the format string
2334 again, no matter what happened */
2335 inpos--;
2337 /* add the contents of buf to the output */
2338 buflen = strlen(buf);
2339 if (outpos + buflen < datelen) {
2340 date[outpos] = '\0'; /* for strcat to hook onto */
2341 strcat(date, buf);
2342 outpos += buflen;
2343 } else {
2344 date[outpos] = '\0';
2345 strncat(date, buf, datelen - outpos);
2346 date[datelen - 1] = '\0';
2347 SetLastError(ERROR_INSUFFICIENT_BUFFER);
2348 WARN(ole, "insufficient buffer\n");
2349 return 0;
2352 /* reset the variables we used to keep track of this item */
2353 count = 0;
2354 type = '\0';
2355 } else if (format[inpos] == '\0') {
2356 /* we can't check for this at the loop-head, because
2357 that breaks the printing of the last format-item */
2358 date[outpos] = '\0';
2359 break;
2360 } else if (count) {
2361 /* continuing a code for an item */
2362 count +=1;
2363 continue;
2364 } else if (strchr("hHmstyMdg", format[inpos])) {
2365 type = format[inpos];
2366 count = 1;
2367 continue;
2368 } else if (format[inpos] == '\'') {
2369 inquote = 1;
2370 continue;
2371 } else {
2372 date[outpos++] = format[inpos];
2374 /* now deal with a possible buffer overflow */
2375 if (outpos >= datelen) {
2376 date[datelen - 1] = '\0';
2377 SetLastError(ERROR_INSUFFICIENT_BUFFER);
2378 return 0;
2382 if (Overflow) {
2383 SetLastError(ERROR_INSUFFICIENT_BUFFER);
2386 /* finish it off with a string terminator */
2387 outpos++;
2388 /* sanity check */
2389 if (outpos > datelen-1) outpos = datelen-1;
2390 date[outpos] = '\0';
2392 TRACE(ole, "OLE_GetFormatA returns string '%s', len %d\n",
2393 date, outpos);
2394 return outpos;
2397 /**************************************************************
2398 * OLE_GetFormatW [internal]
2400 INT32 WINAPI OLE_GetFormatW(LCID locale, DWORD flags, DWORD tflags,
2401 LPSYSTEMTIME xtime,
2402 LPCWSTR format,
2403 LPWSTR output, INT32 outlen)
2405 INT32 inpos, outpos;
2406 int count, type=0, inquote;
2407 int Overflow; /* loop check */
2408 int usedate, usetime;
2409 WCHAR buf[40];
2410 int buflen=0;
2411 char abuf[40];
2412 WCHAR arg0[] = {0}, arg1[] = {'%','d',0};
2413 WCHAR arg2[] = {'%','0','2','d',0};
2414 WCHAR *argarr[] = {arg0, arg1, arg2};
2415 int datevars=0, timevars=0;
2417 /* make a debug report */
2418 lstrcpynWtoA(abuf, format, sizeof(format));
2419 TRACE(ole, "args: 0x%lx, 0x%lx, 0x%lx, time(d=%d,h=%d,m=%d,s=%d), fmt:\'%s\' (at %p), %p with max len %d\n",
2420 locale, flags, tflags,
2421 xtime->wDay, xtime->wHour, xtime->wMinute, xtime->wSecond,
2422 abuf, format, output, outlen);
2425 /* initialize state variables */
2426 inpos = outpos = 0;
2427 count = 0;
2428 inquote = Overflow = 0;
2429 /* this is really just a sanity check */
2430 output[0] = buf[0] = 0;
2431 abuf[0] = '\0';
2432 /* for compatibility with official Windows behavior */
2433 usedate = flags & DATE_DATEVARSONLY;
2434 usetime = flags & TIME_TIMEVARSONLY;
2436 /* this loop is the core of the function */
2437 for (inpos = 0; /* we have several break points */ ; inpos++) {
2438 if (inquote) {
2439 if (format[inpos] == (WCHAR) '\'') {
2440 if (format[inpos+1] == '\'') {
2441 inpos++;
2442 output[outpos++] = '\'';
2443 } else {
2444 inquote = 0;
2445 continue;
2447 } else if (format[inpos] == 0) {
2448 output[outpos++] = 0;
2449 if (outpos > outlen) Overflow = 1;
2450 break; /* normal exit (within a quote) */
2451 } else {
2452 output[outpos++] = format[inpos]; /* copy input */
2453 if (outpos > outlen) {
2454 Overflow = 1;
2455 output[outpos-1] = 0;
2456 break;
2459 } else if ( (count && (format[inpos] != type))
2460 || ( (count==4 && type =='y') ||
2461 (count==4 && type =='M') ||
2462 (count==4 && type =='d') ||
2463 (count==2 && type =='g') ||
2464 (count==2 && type =='h') ||
2465 (count==2 && type =='H') ||
2466 (count==2 && type =='m') ||
2467 (count==2 && type =='s') ||
2468 (count==2 && type =='t') ) ) {
2469 if (type == 'd') {
2470 if (count == 3) {
2471 GetLocaleInfo32W(locale,
2472 LOCALE_SDAYNAME1 + xtime->wDayOfWeek -1,
2473 buf, sizeof(buf)/sizeof(WCHAR) );
2474 } else if (count == 3) {
2475 GetLocaleInfo32W(locale,
2476 LOCALE_SABBREVDAYNAME1 +
2477 xtime->wDayOfWeek -1,
2478 buf, sizeof(buf)/sizeof(WCHAR) );
2479 } else {
2480 wsnprintf32W(buf, 5, argarr[count], xtime->wDay );
2482 } else if (type == 'M') {
2483 if (count == 4) {
2484 GetLocaleInfo32W(locale, LOCALE_SMONTHNAME1 +
2485 xtime->wMonth -1, buf,
2486 sizeof(buf)/sizeof(WCHAR) );
2487 } else if (count == 3) {
2488 GetLocaleInfo32W(locale, LOCALE_SABBREVMONTHNAME1 +
2489 xtime->wMonth -1, buf,
2490 sizeof(buf)/sizeof(WCHAR) );
2491 } else {
2492 wsnprintf32W(buf, 5, argarr[count], xtime->wMonth);
2494 } else if (type == 'y') {
2495 if (count == 4) {
2496 wsnprintf32W(buf, 6, argarr[1] /* "%d" */,
2497 xtime->wYear);
2498 } else if (count == 3) {
2499 lstrcpynAtoW(buf, "yyy", 5);
2500 } else {
2501 wsnprintf32W(buf, 6, argarr[count],
2502 xtime->wYear % 100);
2504 } else if (type == 'g') {
2505 if (count == 2) {
2506 FIXME(ole, "LOCALE_ICALENDARTYPE unimplemented\n");
2507 lstrcpynAtoW(buf, "AD", 5);
2508 } else {
2509 /* Win API sez we copy it verbatim */
2510 lstrcpynAtoW(buf, "g", 5);
2512 } else if (type == 'h') {
2513 /* hours 1:00-12:00 --- is this right? */
2514 wsnprintf32W(buf, 5, argarr[count],
2515 (xtime->wHour-1)%12 +1);
2516 } else if (type == 'H') {
2517 wsnprintf32W(buf, 5, argarr[count],
2518 xtime->wHour);
2519 } else if (type == 'm' ) {
2520 wsnprintf32W(buf, 5, argarr[count],
2521 xtime->wMinute);
2522 } else if (type == 's' ) {
2523 wsnprintf32W(buf, 5, argarr[count],
2524 xtime->wSecond);
2525 } else if (type == 't') {
2526 GetLocaleInfo32W(locale, (xtime->wHour < 12) ?
2527 LOCALE_S1159 : LOCALE_S2359,
2528 buf, sizeof(buf) );
2529 if (count == 1) {
2530 buf[1] = 0;
2534 /* no matter what happened, we need to check this next
2535 character the next time we loop through */
2536 inpos--;
2538 /* cat buf onto the output */
2539 outlen = lstrlen32W(buf);
2540 if (outpos + buflen < outlen) {
2541 output[outpos] = 0; /* a "hook" for strcat */
2542 lstrcat32W(output, buf);
2543 outpos += buflen;
2544 } else {
2545 output[outpos] = 0;
2546 lstrcatn32W(output, buf, outlen - outpos);
2547 output[outlen - 1] = 0;
2548 Overflow = 1;
2549 break; /* Abnormal exit */
2552 /* reset the variables we used this time */
2553 count = 0;
2554 type = '\0';
2555 } else if (format[inpos] == 0) {
2556 /* we can't check for this at the beginning, because that
2557 would keep us from printing a format spec that ended the
2558 string */
2559 output[outpos] = 0;
2560 break; /* NORMAL EXIT */
2561 } else if (count) {
2562 /* how we keep track of the middle of a format spec */
2563 count++;
2564 continue;
2565 } else if ( (datevars && (format[inpos]=='d' ||
2566 format[inpos]=='M' ||
2567 format[inpos]=='y' ||
2568 format[inpos]=='g') ) ||
2569 (timevars && (format[inpos]=='H' ||
2570 format[inpos]=='h' ||
2571 format[inpos]=='m' ||
2572 format[inpos]=='s' ||
2573 format[inpos]=='t') ) ) {
2574 type = format[inpos];
2575 count = 1;
2576 continue;
2577 } else if (format[inpos] == '\'') {
2578 inquote = 1;
2579 continue;
2580 } else {
2581 /* unquoted literals */
2582 output[outpos++] = format[inpos];
2586 if (Overflow) {
2587 SetLastError(ERROR_INSUFFICIENT_BUFFER);
2588 WARN(ole, " buffer overflow\n");
2591 /* final string terminator and sanity check */
2592 outpos++;
2593 if (outpos > outlen-1) outpos = outlen-1;
2594 output[outpos] = '0';
2596 lstrcpynWtoA(abuf, output, sizeof(abuf) );
2597 TRACE(ole, " returning string \'%s\'\n", abuf);
2599 return (!Overflow) ? outlen : 0;
2604 /******************************************************************************
2605 * GetDateFormat32A [KERNEL32.310]
2606 * Makes an ASCII string of the date
2608 * This function uses format to format the date, or, if format
2609 * is NULL, uses the default for the locale. format is a string
2610 * of literal fields and characters as follows:
2612 * - d single-digit (no leading zero) day (of month)
2613 * - dd two-digit day (of month)
2614 * - ddd short day-of-week name
2615 * - dddd long day-of-week name
2616 * - M single-digit month
2617 * - MM two-digit month
2618 * - MMM short month name
2619 * - MMMM full month name
2620 * - y two-digit year, no leading 0
2621 * - yy two-digit year
2622 * - yyyy four-digit year
2623 * - gg era string
2626 INT32 WINAPI GetDateFormat32A(LCID locale,DWORD flags,
2627 LPSYSTEMTIME xtime,
2628 LPCSTR format, LPSTR date,INT32 datelen)
2631 char format_buf[40];
2632 LPCSTR thisformat;
2633 SYSTEMTIME t;
2634 LPSYSTEMTIME thistime;
2635 LCID thislocale;
2637 INT32 ret;
2639 TRACE(ole,"(0x%04lx,0x%08lx,%p,%s,%p,%d)\n",
2640 locale,flags,xtime,format,date,datelen);
2642 if (!locale) {
2643 locale = LOCALE_SYSTEM_DEFAULT;
2646 if (locale == LOCALE_SYSTEM_DEFAULT) {
2647 thislocale = GetSystemDefaultLCID();
2648 } else if (locale == LOCALE_USER_DEFAULT) {
2649 thislocale = GetUserDefaultLCID();
2650 } else {
2651 thislocale = locale;
2654 if (xtime == NULL) {
2655 GetSystemTime(&t);
2656 thistime = &t;
2657 } else {
2658 thistime = xtime;
2661 if (format == NULL) {
2662 GetLocaleInfo32A(thislocale, ((flags&DATE_LONGDATE)
2663 ? LOCALE_SLONGDATE
2664 : LOCALE_SSHORTDATE),
2665 format_buf, sizeof(format_buf));
2666 thisformat = format_buf;
2667 } else {
2668 thisformat = format;
2672 ret = OLE_GetFormatA(thislocale, flags, 0, thistime, thisformat,
2673 date, datelen);
2676 TRACE(ole,
2677 "GetDateFormat32A() returning %d, with data=%s\n",
2678 ret, date);
2679 return ret;
2682 /******************************************************************************
2683 * GetDateFormat32W [KERNEL32.311]
2684 * Makes a Unicode string of the date
2686 * Acts the same as GetDateFormat32A(), except that it's Unicode.
2687 * Accepts & returns sizes as counts of Unicode characters.
2690 INT32 WINAPI GetDateFormat32W(LCID locale,DWORD flags,
2691 LPSYSTEMTIME xtime,
2692 LPCWSTR format,
2693 LPWSTR date, INT32 datelen)
2695 short datearr[] = {'1','9','9','4','-','1','-','1',0};
2697 FIXME(ole, "STUB (should call OLE_GetFormatW)\n");
2698 lstrcpyn32W(date, datearr, datelen);
2699 return ( datelen < 9) ? datelen : 9;
2704 /**************************************************************************
2705 * EnumDateFormats32A (KERNEL32.198)
2707 BOOL32 WINAPI EnumDateFormats32A(
2708 DATEFMT_ENUMPROC32A lpDateFmtEnumProc, LCID Locale, DWORD dwFlags)
2710 FIXME(ole, "Only US English supported\n");
2712 if(!lpDateFmtEnumProc)
2714 SetLastError(ERROR_INVALID_PARAMETER);
2715 return FALSE;
2718 switch(dwFlags)
2720 case DATE_SHORTDATE:
2721 if(!(*lpDateFmtEnumProc)("M/d/yy")) return TRUE;
2722 if(!(*lpDateFmtEnumProc)("M/d/yyyy")) return TRUE;
2723 if(!(*lpDateFmtEnumProc)("MM/dd/yy")) return TRUE;
2724 if(!(*lpDateFmtEnumProc)("MM/dd/yyyy")) return TRUE;
2725 if(!(*lpDateFmtEnumProc)("yy/MM/dd")) return TRUE;
2726 if(!(*lpDateFmtEnumProc)("dd-MMM-yy")) return TRUE;
2727 return TRUE;
2728 case DATE_LONGDATE:
2729 if(!(*lpDateFmtEnumProc)("dddd, MMMM dd, yyyy")) return TRUE;
2730 if(!(*lpDateFmtEnumProc)("MMMM dd, yyyy")) return TRUE;
2731 if(!(*lpDateFmtEnumProc)("dddd, dd MMMM, yyyy")) return TRUE;
2732 if(!(*lpDateFmtEnumProc)("dd MMMM, yyyy")) return TRUE;
2733 return TRUE;
2734 default:
2735 FIXME(ole, "Unknown date format (%ld)\n", dwFlags);
2736 SetLastError(ERROR_INVALID_PARAMETER);
2737 return FALSE;
2741 /**************************************************************************
2742 * EnumDateFormats32W (KERNEL32.199)
2744 BOOL32 WINAPI EnumDateFormats32W(
2745 DATEFMT_ENUMPROC32W lpDateFmtEnumProc, LCID Locale, DWORD dwFlags)
2747 FIXME(ole, "(%p, %ld, %ld): stub\n", lpDateFmtEnumProc, Locale, dwFlags);
2748 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2749 return FALSE;
2752 /**************************************************************************
2753 * EnumTimeFormats32A (KERNEL32.210)
2755 BOOL32 WINAPI EnumTimeFormats32A(
2756 TIMEFMT_ENUMPROC32A lpTimeFmtEnumProc, LCID Locale, DWORD dwFlags)
2758 FIXME(ole, "Only US English supported\n");
2760 if(!lpTimeFmtEnumProc)
2762 SetLastError(ERROR_INVALID_PARAMETER);
2763 return FALSE;
2766 if(dwFlags)
2768 FIXME(ole, "Unknown time format (%ld)\n", dwFlags);
2771 if(!(*lpTimeFmtEnumProc)("h:mm:ss tt")) return TRUE;
2772 if(!(*lpTimeFmtEnumProc)("hh:mm:ss tt")) return TRUE;
2773 if(!(*lpTimeFmtEnumProc)("H:mm:ss")) return TRUE;
2774 if(!(*lpTimeFmtEnumProc)("HH:mm:ss")) return TRUE;
2776 return TRUE;
2779 /**************************************************************************
2780 * EnumTimeFormats32W (KERNEL32.211)
2782 BOOL32 WINAPI EnumTimeFormats32W(
2783 TIMEFMT_ENUMPROC32W lpTimeFmtEnumProc, LCID Locale, DWORD dwFlags)
2785 FIXME(ole, "(%p,%ld,%ld): stub", lpTimeFmtEnumProc, Locale, dwFlags);
2786 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2787 return FALSE;
2790 /**************************************************************************
2791 * GetNumberFormat32A (KERNEL32.355)
2792 * NOTE: type of lpFormat should be CONST NUMBERFORMAT
2794 INT32 WINAPI GetNumberFormat32A(LCID locale, DWORD dwflags,
2795 LPCSTR lpvalue, char *lpFormat,
2796 LPSTR lpNumberStr, int cchNumber)
2798 int n;
2800 FIXME(file,"%s: stub, no reformating done\n",lpvalue);
2802 n = strlen(lpvalue);
2803 if (cchNumber) {
2804 strncpy(lpNumberStr,lpvalue,cchNumber);
2805 if (cchNumber <= n) {
2806 lpNumberStr[cchNumber-1] = 0;
2807 n = cchNumber-1;
2810 return n;
2815 /******************************************************************************
2816 * GetTimeFormat32A [KERNEL32.422]
2817 * Makes an ASCII string of the time
2819 * Formats date according to format, or locale default if format is
2820 * NULL. The format consists of literal characters and fields as follows:
2822 * h hours with no leading zero (12-hour)
2823 * hh hours with full two digits
2824 * H hours with no leading zero (24-hour)
2825 * HH hours with full two digits
2826 * m minutes with no leading zero
2827 * mm minutes with full two digits
2828 * s seconds with no leading zero
2829 * ss seconds with full two digits
2830 * t time marker (A or P)
2831 * tt time marker (AM, PM)
2834 INT32 WINAPI
2835 GetTimeFormat32A(LCID locale, /* in */
2836 DWORD flags, /* in */
2837 LPSYSTEMTIME xtime, /* in */
2838 LPCSTR format, /* in */
2839 LPSTR timestr, /* out */
2840 INT32 timelen /* in */)
2841 { char format_buf[40];
2842 LPCSTR thisformat;
2843 SYSTEMTIME t;
2844 LPSYSTEMTIME thistime;
2845 LCID thislocale=0;
2846 DWORD thisflags=LOCALE_STIMEFORMAT; /* standart timeformat */;
2848 TRACE(ole,"GetTimeFormat(0x%04lx,0x%08lx,%p,%s,%p,%d)\n",locale,flags,xtime,format,timestr,timelen);
2850 if (!locale)
2851 { locale = LOCALE_SYSTEM_DEFAULT;
2854 if (locale == LOCALE_SYSTEM_DEFAULT)
2855 { thislocale = GetSystemDefaultLCID();
2857 else if (locale == LOCALE_USER_DEFAULT)
2858 { thislocale = GetUserDefaultLCID();
2860 else
2861 { thislocale = locale;
2864 if ( flags & (TIME_NOTIMEMARKER | TIME_FORCE24HOURFORMAT ))
2865 { FIXME(ole,"TIME_NOTIMEMARKER or TIME_FORCE24HOURFORMAT not implemented\n");
2867 flags &= (TIME_NOSECONDS | TIME_NOMINUTESORSECONDS); /* mask for OLE_GetFormatA*/
2869 if (format == NULL)
2870 { if (flags & LOCALE_NOUSEROVERRIDE) /*use system default*/
2871 { thislocale = GetSystemDefaultLCID();
2873 GetLocaleInfo32A(thislocale, thisflags, format_buf, sizeof(format_buf));
2874 thisformat = format_buf;
2876 else
2877 { thisformat = format;
2880 if (xtime == NULL) /* NULL means use the current local time*/
2881 { GetSystemTime(&t);
2882 thistime = &t;
2884 else
2885 { thistime = xtime;
2887 return OLE_GetFormatA(thislocale, thisflags, flags, thistime, thisformat, timestr, timelen);
2891 /******************************************************************************
2892 * GetTimeFormat32W [KERNEL32.423]
2893 * Makes a Unicode string of the time
2895 INT32 WINAPI
2896 GetTimeFormat32W(LCID locale,DWORD flags,
2897 LPSYSTEMTIME xtime,
2898 LPCWSTR format,
2899 LPWSTR timestr,INT32 timelen)
2901 char debugbuf[40];
2902 WCHAR buf[20];
2903 LPCWSTR realformat=0;
2904 SYSTEMTIME t;
2905 LPSYSTEMTIME realtime;
2906 WCHAR * fmt_buf = NULL;
2907 int fmt_buf_size = 0; /* units of WCHARs */
2908 INT32 retval;
2910 lstrcpynWtoA(debugbuf, format, (sizeof(buf))/2);
2911 TRACE(ole, "GetTimeFormatW len %d flags 0x%lX format >%s<\n",
2912 timelen, flags, debugbuf);
2914 /* Enforce the Windows behavior */
2915 flags |= ~LOCALE_TIMEDATEBOTH;
2916 flags |= TIME_TIMEVARSONLY;
2918 /* take care of the format or locale not being given */
2919 if (format) {
2920 realformat = format;
2921 } else if (locale) {
2922 /* allocate memory */
2923 retval = ERROR_INSUFFICIENT_BUFFER;
2924 fmt_buf = malloc((fmt_buf_size+=7) * sizeof(WCHAR));
2925 if (!fmt_buf)
2926 goto out_nomem;
2928 while(!GetLocaleInfo32W(locale, LOCALE_STIMEFORMAT,
2929 fmt_buf, fmt_buf_size)) {
2930 retval = ERROR_OUTOFMEMORY;
2931 fmt_buf = realloc(fmt_buf,
2932 (fmt_buf_size += 10) * sizeof(WCHAR));
2933 if (!fmt_buf)
2934 goto out_nomem;
2936 realformat = fmt_buf;
2937 } else {
2938 FIXME(ole, "caller gave no locale, no format; what should we do?\n");
2939 SetLastError(ERROR_BAD_FORMAT);
2941 if (!locale)
2942 locale = GetSystemDefaultLCID();
2944 realtime = xtime;
2945 if (!realtime) {
2946 realtime = &t;
2947 GetSystemTime(realtime);
2950 retval = OLE_GetFormatW(locale, flags, 0, realtime, realformat, timestr, timelen);
2951 if (fmt_buf)
2952 free(fmt_buf);
2953 return retval;
2955 out_nomem:
2956 SetLastError(retval);
2957 WARN(ole, "could not allocate %d chars of memory\n", fmt_buf_size);
2958 return 0;