Re: [3/4] user32/cursoricon.c: Multiple Fixes/Improvements for DrawIconEx

2009-09-26 Thread Juan Lang
Hi Wilfried, minor comment on this patch:

 hBitTemp = SelectObject( hMemDC, hXorBits );
+
+UINT bltFlag = 0;

C89 doesn't allow you to mix code and declarations like this.  You'll
have to declare bltFlag at the top of the block.
--Juan




Re: [3/4] user32/cursoricon.c: Multiple Fixes/Improvements for DrawIconEx

2009-09-26 Thread Vitaliy Margolen
Wilfried Pasquazzo wrote:
 Best regards,
 
 Subject: Make DrawIconEx 2 additional tests (now passes all tests)
 Subject: Make DrawIconEx pass a test

You should really combine these 2 patches. You are modifying the same exact
code and breaking it between patches (for some programs).

Vitaliy.