thomas.mertes@t-mobile.at wrote:
My solution for this is: ... CHAR WINAPI RtlUpperChar( CHAR ch ) { WCHAR wch;
wch = toupperW(((WCHAR) ch) & 0xff); if (wch >> 8) { return ch; } else { return (CHAR) wch; }
}
That looks like a horrible kludge. Before we settle on something like this, we should probably consult the people on the unicode mailing list to see what they suggest. - Dan