4 * Copyright 1993 Yngvi Sigurjonsson (yngvi@hafro.is)
5 * Copyright 1996 Marcus Meissner
18 # define iswalnum(c) isalnum(c)
19 # define iswalpha(c) isalpha(c)
20 # define iswupper(c) isupper(c)
21 # define iswlower(c) islower(c)
22 #endif /* HAVE_WCTYPE_H */
26 #include "winnt.h" /* HEAP_ macros */
30 #include "stackframe.h"
34 /* Funny to divide them between user and kernel. */
36 /* be careful: always use functions from wctype.h if character > 255 */
39 * Unicode case conversion routines ... these should be used where
40 * toupper/tolower are used for ASCII.
43 /* FIXME: should probably get rid of wctype.h altogether */
46 WCHAR
towupper(WCHAR code
)
48 const WCHAR
* ptr
= uprtable
[HIBYTE(code
)];
49 return ptr
? ptr
[LOBYTE(code
)] : code
;
52 WCHAR
towlower(WCHAR code
)
54 const WCHAR
* ptr
= lwrtable
[HIBYTE(code
)];
55 return ptr
? ptr
[LOBYTE(code
)] : code
;
57 #endif /* HAVE_WCTYPE_H */
59 /***********************************************************************
60 * IsCharAlpha (USER.433)
62 BOOL16 WINAPI
IsCharAlpha16(CHAR ch
)
64 return isalpha(ch
); /* This is probably not right for NLS */
67 /***********************************************************************
68 * IsCharAlphanumeric (USER.434)
70 BOOL16 WINAPI
IsCharAlphaNumeric16(CHAR ch
)
75 /***********************************************************************
76 * IsCharUpper (USER.435)
78 BOOL16 WINAPI
IsCharUpper16(CHAR ch
)
83 /***********************************************************************
84 * IsCharLower (USER.436)
86 BOOL16 WINAPI
IsCharLower16(CHAR ch
)
91 /***********************************************************************
92 * AnsiUpper16 (USER.431)
94 SEGPTR WINAPI
AnsiUpper16( SEGPTR strOrChar
)
96 /* I am not sure if the locale stuff works with toupper, but then again
97 I am not sure if the Linux libc locale stuffs works at all */
99 /* uppercase only one char if strOrChar < 0x10000 */
100 if (HIWORD(strOrChar
))
103 for (s
= PTR_SEG_TO_LIN(strOrChar
); *s
; s
++) *s
= toupper(*s
);
106 else return toupper((char)strOrChar
);
110 /***********************************************************************
111 * AnsiUpperBuff16 (USER.437)
113 UINT16 WINAPI
AnsiUpperBuff16( LPSTR str
, UINT16 len
)
115 UINT32 count
= len
? len
: 65536;
116 for (; count
; count
--, str
++) *str
= toupper(*str
);
120 /***********************************************************************
121 * AnsiLower16 (USER.432)
123 SEGPTR WINAPI
AnsiLower16( SEGPTR strOrChar
)
125 /* I am not sure if the locale stuff works with toupper, but then again
126 I am not sure if the Linux libc locale stuffs works at all */
128 /* lowercase only one char if strOrChar < 0x10000 */
129 if (HIWORD(strOrChar
))
132 for (s
= PTR_SEG_TO_LIN( strOrChar
); *s
; s
++) *s
= tolower( *s
);
135 else return tolower((char)strOrChar
);
139 /***********************************************************************
140 * AnsiLowerBuff16 (USER.438)
142 UINT16 WINAPI
AnsiLowerBuff16( LPSTR str
, UINT16 len
)
144 UINT32 count
= len
? len
: 65536;
145 for (; count
; count
--, str
++) *str
= tolower(*str
);
150 /***********************************************************************
151 * AnsiNext16 (USER.472)
153 SEGPTR WINAPI
AnsiNext16(SEGPTR current
)
155 return (*(char *)PTR_SEG_TO_LIN(current
)) ? current
+ 1 : current
;
159 /***********************************************************************
160 * AnsiPrev16 (USER.473)
162 SEGPTR WINAPI
AnsiPrev16( SEGPTR start
, SEGPTR current
)
164 return (current
== start
) ? start
: current
- 1;
168 /***********************************************************************
169 * OutputDebugString16 (KERNEL.115)
171 void WINAPI
OutputDebugString16( LPCSTR str
)
174 if (!GetModuleName( GetCurrentTask(), module
, sizeof(module
) ))
175 strcpy( module
, "???" );
177 DUMP( "%s says %s\n", module
, debugstr_a(str
) );
181 /***********************************************************************
182 * OutputDebugString32A (KERNEL32
184 void WINAPI
OutputDebugString32A( LPCSTR str
)
186 OutputDebugString16( str
);
191 /***********************************************************************
192 * OutputDebugString32W (KERNEL32
194 void WINAPI
OutputDebugString32W( LPCWSTR str
)
196 LPSTR p
= HEAP_strdupWtoA( GetProcessHeap(), 0, str
);
197 OutputDebugString32A( p
);
198 HeapFree( GetProcessHeap(), 0, p
);
203 /***********************************************************************
204 * CharNext32A (USER32.29)
206 LPSTR WINAPI
CharNext32A( LPCSTR ptr
)
208 if (!*ptr
) return (LPSTR
)ptr
;
209 if (IsDBCSLeadByte32( *ptr
)) return (LPSTR
)(ptr
+ 2);
210 return (LPSTR
)(ptr
+ 1);
214 /***********************************************************************
215 * CharNextEx32A (USER32.30)
217 LPSTR WINAPI
CharNextEx32A( WORD codepage
, LPCSTR ptr
, DWORD flags
)
219 if (!*ptr
) return (LPSTR
)ptr
;
220 if (IsDBCSLeadByteEx( codepage
, *ptr
)) return (LPSTR
)(ptr
+ 2);
221 return (LPSTR
)(ptr
+ 1);
225 /***********************************************************************
226 * CharNextExW (USER32.31)
228 LPWSTR WINAPI
CharNextEx32W(WORD codepage
,LPCWSTR x
,DWORD flags
)
230 /* FIXME: add DBCS / codepage stuff */
231 if (*x
) return (LPWSTR
)(x
+1);
232 else return (LPWSTR
)x
;
235 /***********************************************************************
236 * CharNextW (USER32.32)
238 LPWSTR WINAPI
CharNext32W(LPCWSTR x
)
240 if (*x
) return (LPWSTR
)(x
+1);
241 else return (LPWSTR
)x
;
244 /***********************************************************************
245 * CharPrev32A (USER32.33)
247 LPSTR WINAPI
CharPrev32A( LPCSTR start
, LPCSTR ptr
)
249 while (*start
&& (start
< ptr
))
251 LPCSTR next
= CharNext32A( start
);
252 if (next
>= ptr
) break;
259 /***********************************************************************
260 * CharPrevEx32A (USER32.34)
262 LPSTR WINAPI
CharPrevEx32A( WORD codepage
, LPCSTR start
, LPCSTR ptr
, DWORD flags
)
264 while (*start
&& (start
< ptr
))
266 LPCSTR next
= CharNextEx32A( codepage
, start
, flags
);
267 if (next
> ptr
) break;
274 /***********************************************************************
275 * CharPrevExW (USER32.35)
277 LPWSTR WINAPI
CharPrevEx32W(WORD codepage
,LPCWSTR start
,LPCWSTR x
,DWORD flags
)
279 /* FIXME: add DBCS / codepage stuff */
280 if (x
>start
) return (LPWSTR
)(x
-1);
281 else return (LPWSTR
)x
;
284 /***********************************************************************
285 * CharPrevW (USER32.36)
287 LPWSTR WINAPI
CharPrev32W(LPCWSTR start
,LPCWSTR x
)
289 if (x
>start
) return (LPWSTR
)(x
-1);
290 else return (LPWSTR
)x
;
293 /***********************************************************************
294 * CharLowerA (USER32.25)
295 * FIXME: handle current locale
297 LPSTR WINAPI
CharLower32A(LPSTR x
)
311 else return (LPSTR
)tolower((char)(int)x
);
314 /***********************************************************************
315 * CharLowerBuffA (USER32.26)
316 * FIXME: handle current locale
318 DWORD WINAPI
CharLowerBuff32A(LPSTR x
,DWORD buflen
)
322 if (!x
) return 0; /* YES */
323 while (*x
&& (buflen
--))
332 /***********************************************************************
333 * CharLowerBuffW (USER32.27)
334 * FIXME: handle current locale
336 DWORD WINAPI
CharLowerBuff32W(LPWSTR x
,DWORD buflen
)
340 if (!x
) return 0; /* YES */
341 while (*x
&& (buflen
--))
350 /***********************************************************************
351 * CharLowerW (USER32.28)
352 * FIXME: handle current locale
354 LPWSTR WINAPI
CharLower32W(LPWSTR x
)
366 else return (LPWSTR
)((UINT32
)towlower(LOWORD(x
)));
369 /***********************************************************************
370 * CharUpper32A (USER32.41)
371 * FIXME: handle current locale
373 LPSTR WINAPI
CharUpper32A(LPSTR x
)
385 return (LPSTR
)toupper((char)(int)x
);
388 /***********************************************************************
389 * CharUpperBuffA (USER32.42)
390 * FIXME: handle current locale
392 DWORD WINAPI
CharUpperBuff32A(LPSTR x
,DWORD buflen
)
396 if (!x
) return 0; /* YES */
397 while (*x
&& (buflen
--))
406 /***********************************************************************
407 * CharUpperBuffW (USER32.43)
408 * FIXME: handle current locale
410 DWORD WINAPI
CharUpperBuff32W(LPWSTR x
,DWORD buflen
)
414 if (!x
) return 0; /* YES */
415 while (*x
&& (buflen
--))
424 /***********************************************************************
425 * CharUpperW (USER32.44)
426 * FIXME: handle current locale
428 LPWSTR WINAPI
CharUpper32W(LPWSTR x
)
440 else return (LPWSTR
)((UINT32
)towupper(LOWORD(x
)));
443 /***********************************************************************
444 * IsCharAlphaA (USER32.331)
445 * FIXME: handle current locale
447 BOOL32 WINAPI
IsCharAlpha32A(CHAR x
)
452 /***********************************************************************
453 * IsCharAlphaNumericA (USER32.332)
454 * FIXME: handle current locale
456 BOOL32 WINAPI
IsCharAlphaNumeric32A(CHAR x
)
461 /***********************************************************************
462 * IsCharAlphaNumericW (USER32.333)
463 * FIXME: handle current locale
465 BOOL32 WINAPI
IsCharAlphaNumeric32W(WCHAR x
)
470 /***********************************************************************
471 * IsCharAlphaW (USER32.334)
472 * FIXME: handle current locale
474 BOOL32 WINAPI
IsCharAlpha32W(WCHAR x
)
479 /***********************************************************************
480 * IsCharLower32A (USER32.335)
481 * FIXME: handle current locale
483 BOOL32 WINAPI
IsCharLower32A(CHAR x
)
488 /***********************************************************************
489 * IsCharLower32W (USER32.336)
490 * FIXME: handle current locale
492 BOOL32 WINAPI
IsCharLower32W(WCHAR x
)
497 /***********************************************************************
498 * IsCharUpper32A (USER32.337)
499 * FIXME: handle current locale
501 BOOL32 WINAPI
IsCharUpper32A(CHAR x
)
506 /***********************************************************************
507 * IsCharUpper32W (USER32.338)
508 * FIXME: handle current locale
510 BOOL32 WINAPI
IsCharUpper32W(WCHAR x
)
515 /***********************************************************************
516 * FormatMessage32A (KERNEL32.138)
517 * FIXME: missing wrap,FROM_SYSTEM message-loading,
519 DWORD WINAPI
FormatMessage32A(
526 LPDWORD args
/* va_list *args */
531 DWORD width
= dwFlags
& FORMAT_MESSAGE_MAX_WIDTH_MASK
;
532 DWORD nolinefeed
= 0;
534 TRACE(resource
, "(0x%lx,%p,%ld,0x%lx,%p,%ld,%p)\n",
535 dwFlags
,lpSource
,dwMessageId
,dwLanguageId
,lpBuffer
,nSize
,args
);
537 FIXME(resource
,"line wrapping not supported.\n");
539 if (dwFlags
& FORMAT_MESSAGE_FROM_STRING
)
540 from
= HEAP_strdupA( GetProcessHeap(), 0, (LPSTR
)lpSource
);
541 if (dwFlags
& FORMAT_MESSAGE_FROM_SYSTEM
) {
542 from
= HeapAlloc( GetProcessHeap(),0,200 );
543 sprintf(from
,"Systemmessage, messageid = 0x%08lx\n",dwMessageId
);
545 if (dwFlags
& FORMAT_MESSAGE_FROM_HMODULE
) {
548 dwMessageId
&= 0xFFFF;
549 bufsize
=LoadMessage32A((HMODULE32
)lpSource
,dwMessageId
,dwLanguageId
,NULL
,100);
551 from
= HeapAlloc( GetProcessHeap(), 0, bufsize
+ 1 );
552 LoadMessage32A((HMODULE32
)lpSource
,dwMessageId
,dwLanguageId
,from
,bufsize
+1);
555 target
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, 100);
559 #define ADD_TO_T(c) \
561 if (t-target == talloced) {\
562 target = (char*)HeapReAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,target,talloced*2);\
563 t = target+talloced;\
569 while (*f
&& !nolinefeed
) {
572 char *fmtstr
,*sprintfbuf
,*x
,*lastf
;
583 case '1':case '2':case '3':case '4':case '5':
584 case '6':case '7':case '8':case '9':
587 case '0':case '1':case '2':case '3':
588 case '4':case '5':case '6':case '7':
591 insertnr
=insertnr
*10+*f
-'0';
600 if (NULL
!=(x
=strchr(f
,'!'))) {
602 fmtstr
=HeapAlloc(GetProcessHeap(),0,strlen(f
)+2);
603 sprintf(fmtstr
,"%%%s",f
);
606 fmtstr
=HeapAlloc(GetProcessHeap(),0,strlen(f
));
607 sprintf(fmtstr
,"%%%s",f
);
608 f
+=strlen(f
); /*at \0*/
614 fmtstr
=HEAP_strdupA(GetProcessHeap(),0,"%s");
616 if (dwFlags
& FORMAT_MESSAGE_ARGUMENT_ARRAY
)
617 argliststart
=args
+insertnr
-1;
619 argliststart
=(*(DWORD
**)args
)+insertnr
-1;
621 if (fmtstr
[strlen(fmtstr
)-1]=='s')
622 sprintfbuf
=HeapAlloc(GetProcessHeap(),0,strlen((LPSTR
)argliststart
[0])+1);
624 sprintfbuf
=HeapAlloc(GetProcessHeap(),0,100);
626 /* CMF - This makes a BIG assumption about va_list */
627 wvsprintf32A(sprintfbuf
, fmtstr
, (va_list) argliststart
);
632 HeapFree(GetProcessHeap(),0,sprintfbuf
);
634 /* NULL args - copy formatstr
637 while ((lastf
<f
)&&(*lastf
)) {
641 HeapFree(GetProcessHeap(),0,fmtstr
);
644 /* FIXME: perhaps add \r too? */
652 default:ADD_TO_T(*f
++)
664 if(t
==target
|| t
[-1]!='\n')
665 ADD_TO_T('\n'); /* FIXME: perhaps add \r too? */
667 talloced
= strlen(target
)+1;
668 if (nSize
&& talloced
<nSize
) {
669 target
= (char*)HeapReAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,target
,nSize
);
671 TRACE(resource
,"-- %s\n",debugstr_a(target
));
672 if (dwFlags
& FORMAT_MESSAGE_ALLOCATE_BUFFER
) {
673 /* nSize is the MINIMUM size */
674 *((LPVOID
*)lpBuffer
) = (LPVOID
)LocalAlloc32(GMEM_ZEROINIT
,talloced
);
675 memcpy(*(LPSTR
*)lpBuffer
,target
,talloced
);
677 strncpy(lpBuffer
,target
,nSize
);
678 HeapFree(GetProcessHeap(),0,target
);
679 if (from
) HeapFree(GetProcessHeap(),0,from
);
680 return (dwFlags
& FORMAT_MESSAGE_ALLOCATE_BUFFER
) ?
681 strlen(*(LPSTR
*)lpBuffer
):
687 /***********************************************************************
688 * FormatMessage32W (KERNEL32.138)
690 DWORD WINAPI
FormatMessage32W(
697 LPDWORD args
/* va_list *args */
702 DWORD width
= dwFlags
& FORMAT_MESSAGE_MAX_WIDTH_MASK
;
703 DWORD nolinefeed
= 0;
705 TRACE(resource
, "(0x%lx,%p,%ld,0x%lx,%p,%ld,%p)\n",
706 dwFlags
,lpSource
,dwMessageId
,dwLanguageId
,lpBuffer
,nSize
,args
);
708 FIXME(resource
,"line wrapping not supported.\n");
710 if (dwFlags
& FORMAT_MESSAGE_FROM_STRING
)
711 from
= HEAP_strdupWtoA(GetProcessHeap(),0,(LPWSTR
)lpSource
);
712 if (dwFlags
& FORMAT_MESSAGE_FROM_SYSTEM
) {
713 /* gather information from system message tables ... */
714 from
= HeapAlloc( GetProcessHeap(),0,200 );
715 sprintf(from
,"Systemmessage, messageid = 0x%08lx\n",dwMessageId
);
717 if (dwFlags
& FORMAT_MESSAGE_FROM_HMODULE
) {
720 dwMessageId
&= 0xFFFF;
721 bufsize
=LoadMessage32A((HMODULE32
)lpSource
,dwMessageId
,dwLanguageId
,NULL
,100);
724 from
= HeapAlloc( GetProcessHeap(), 0, bufsize
+ 1 );
725 LoadMessage32A((HMODULE32
)lpSource
,dwMessageId
,dwLanguageId
,from
,bufsize
+1);
728 target
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, 100 );
732 #define ADD_TO_T(c) \
734 if (t-target == talloced) {\
735 target = (char*)HeapReAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,target,talloced*2);\
736 t = target+talloced;\
742 while (*f
&& !nolinefeed
) {
745 char *fmtstr
,*sprintfbuf
,*x
;
755 case '1':case '2':case '3':case '4':case '5':
756 case '6':case '7':case '8':case '9':
759 case '0':case '1':case '2':case '3':
760 case '4':case '5':case '6':case '7':
763 insertnr
=insertnr
*10+*f
-'0';
772 if (NULL
!=(x
=strchr(f
,'!')))
775 fmtstr
=HeapAlloc( GetProcessHeap(), 0, strlen(f
)+2);
776 sprintf(fmtstr
,"%%%s",f
);
779 fmtstr
=HeapAlloc(GetProcessHeap(),0,strlen(f
));
780 sprintf(fmtstr
,"%%%s",f
);
781 f
+=strlen(f
); /*at \0*/
787 fmtstr
=HEAP_strdupA( GetProcessHeap(),0,"%s");
788 if (dwFlags
& FORMAT_MESSAGE_ARGUMENT_ARRAY
)
789 argliststart
=args
+insertnr
-1;
791 argliststart
=(*(DWORD
**)args
)+insertnr
-1;
793 if (fmtstr
[strlen(fmtstr
)-1]=='s') {
796 xarr
[0]=(DWORD
)HEAP_strdupWtoA(GetProcessHeap(),0,(LPWSTR
)(*(argliststart
+0)));
797 /* possible invalid pointers */
798 xarr
[1]=*(argliststart
+1);
799 xarr
[2]=*(argliststart
+2);
800 sprintfbuf
=HeapAlloc(GetProcessHeap(),0,lstrlen32W((LPWSTR
)argliststart
[0])*2+1);
802 /* CMF - This makes a BIG assumption about va_list */
803 vsprintf(sprintfbuf
, fmtstr
, (va_list) xarr
);
805 sprintfbuf
=HeapAlloc(GetProcessHeap(),0,100);
807 /* CMF - This makes a BIG assumption about va_list */
808 wvsprintf32A(sprintfbuf
, fmtstr
, (va_list) argliststart
);
814 HeapFree(GetProcessHeap(),0,sprintfbuf
);
815 HeapFree(GetProcessHeap(),0,fmtstr
);
818 /* FIXME: perhaps add \r too? */
826 default:ADD_TO_T(*f
++)
838 if(t
==target
|| t
[-1]!='\n')
839 ADD_TO_T('\n'); /* FIXME: perhaps add \r too? */
841 talloced
= strlen(target
)+1;
842 if (nSize
&& talloced
<nSize
)
843 target
= (char*)HeapReAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,target
,nSize
);
844 if (dwFlags
& FORMAT_MESSAGE_ALLOCATE_BUFFER
) {
845 /* nSize is the MINIMUM size */
846 *((LPVOID
*)lpBuffer
) = (LPVOID
)LocalAlloc32(GMEM_ZEROINIT
,talloced
*2+2);
847 lstrcpynAtoW(*(LPWSTR
*)lpBuffer
,target
,talloced
);
849 lstrcpynAtoW(lpBuffer
,target
,nSize
);
850 HeapFree(GetProcessHeap(),0,target
);
851 if (from
) HeapFree(GetProcessHeap(),0,from
);
852 return (dwFlags
& FORMAT_MESSAGE_ALLOCATE_BUFFER
) ?
853 lstrlen32W(*(LPWSTR
*)lpBuffer
):
854 lstrlen32W(lpBuffer
);