Better reflect the current state of DrawIconEx

Markus Hitter mah at jump-ing.de
Mon Jul 21 14:17:17 CDT 2008


Better reflect the current state of DrawIconEx. Partially fixes bug  
#14576:
http://bugs.winehq.org/show_bug.cgi?id=14576


diff --git a/dlls/user32/cursoricon.c b/dlls/user32/cursoricon.c
index a1ba570..eca9bfb 100644
--- a/dlls/user32/cursoricon.c
+++ b/dlls/user32/cursoricon.c
@@ -1979,7 +1979,9 @@ BOOL WINAPI DrawIconEx( HDC hdc, INT x0, INT  
y0, HICON hIcon,
      if (istep)
          FIXME_(icon)("Ignoring istep=%d\n", istep);
      if (flags & DI_COMPAT)
-        FIXME_(icon)("Ignoring flag DI_COMPAT\n");
+        FIXME_(icon)("DI_COMPAT flag unimplemented (before NT4.0)\n");
+    if (flags & DI_NOMIRROR)
+        FIXME_(icon)("DI_NOMIRROR flag unimplemented (XP or later)\n");

      if (!flags) {
          FIXME_(icon)("no flags set? setting to DI_NORMAL\n");





More information about the wine-patches mailing list