24 Mar
2008
24 Mar
'08
8:17 p.m.
"Maarten Lankhorst" <m.b.lankhorst(a)gmail.com> writes:
+ TRACE("Flags: %08x, recipients: %p(0x%x), msg: %04x, wparam: %08lx, lparam: %08lx\n", flags, recipients, + (recipients ? *recipients : recips), msg, wp, lp); + + if (flags > BSF_LUID)
It doesn't make sense to compare flags with >. What are you trying to check for?
-} + else + FIXME("Recipients %08x not supported!\n", *recipients); + + if (ret > 0 && !GetLastError()) + SetLastError(lasterror);
In general if you have to save and restore last error you are doing something wrong. -- Alexandre Julliard julliard(a)winehq.org