Re: gdi32: Use 0xffff as a default character as Vista does
10 Jun
2008
10 Jun
'08
7:48 a.m.
2008/6/10 Dmitry Timoshkov <dmitry(a)codeweavers.com>:
Hello,
this patch fixes the problem reported in the bug 12305. In Wine Tahoma character ':' is mapped to glyph index 0x1f, and that seems to be confusing Firefox.
+ TM.tmDefaultChar = pOS2->usDefaultChar ? pOS2->usDefaultChar : 0xffff;
There is a UNICODE_NOCHAR constant for this. - Reece
10 Jun
10 Jun
7:54 a.m.
New subject: gdi32: Use 0xffff as a default character as Vista does
"Reece Dunn" <msclrhd(a)googlemail.com> wrote:
+ TM.tmDefaultChar = pOS2->usDefaultChar ? pOS2->usDefaultChar : 0xffff;
There is a UNICODE_NOCHAR constant for this.
UNICODE_NOCHAR is defined in winuser.h, we can't use it in gdi32. -- Dmitry.
6399
Age (days ago)
6399
Last active (days ago)
1 comments
2 participants
participants (2)
-
Dmitry Timoshkov -
Reece Dunn