Hi, all,
I reviewed this path http://source.winehq.org/patches/data/108345,
I only found a code style problem:
this:
+ if ( status == Ok && graphics->hdc)
should :
+ if (status == Ok && graphics->hdc)
Could you help me point out the other mistake ? Thanks .