Implemented IsIconic
authorJames Tabor <james.tabor@reactos.org>
Wed, 23 Jul 2003 06:14:12 +0000 (06:14 +0000)
committerJames Tabor <james.tabor@reactos.org>
Wed, 23 Jul 2003 06:14:12 +0000 (06:14 +0000)
svn path=/trunk/; revision=5224

reactos/lib/user32/windows/window.c

index ce9bf18..a0090a1 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: window.c,v 1.44 2003/07/23 04:52:44 jimtabor Exp $
+/* $Id: window.c,v 1.45 2003/07/23 06:14:12 jimtabor Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS user32.dll
@@ -1169,13 +1169,12 @@ IsChild(HWND hWndParent,
 
 
 /*
- * @unimplemented
+ * @implemented
  */
 WINBOOL STDCALL
 IsIconic(HWND hWnd)
 {
-  UNIMPLEMENTED;
-  return FALSE;
+  return (NtUserGetWindowLong( hWnd, GWL_STYLE ) & WS_MINIMIZE) != 0;  
 }