Lei Zhang leiz@ucla.edu writes:
--- dlls/riched20/editstr.h 2 Mar 2006 11:18:19 -0000 1.27 +++ dlls/riched20/editstr.h 5 Mar 2006 06:36:50 -0000 @@ -29,6 +29,7 @@ #include <stdarg.h> #include <stdio.h> #include <stdlib.h> +#include <wctype.h>
You can't use anything from wctype.h in Wine. Use the functions from wine/unicode.h instead.
On Monday 06 March 2006 11:06 am, you wrote:
Lei Zhang leiz@ucla.edu writes:
--- dlls/riched20/editstr.h 2 Mar 2006 11:18:19 -0000 1.27 +++ dlls/riched20/editstr.h 5 Mar 2006 06:36:50 -0000 @@ -29,6 +29,7 @@ #include <stdarg.h> #include <stdio.h> #include <stdlib.h> +#include <wctype.h>
You can't use anything from wctype.h in Wine. Use the functions from wine/unicode.h instead.
Hi Alex,
I did not know wctype.h is unusable in Wine. Is this documented anywhere? I took a quick glance around the site and did not see much information regarding i18n. Anyway, I posted a revised patch to wine-patches earlier in the week:
http://www.winehq.org/pipermail/wine-patches/2006-March/024848.html
- Lei