mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Implemented IsZoomed()
svn path=/trunk/; revision=4333
This commit is contained in:
parent
075b861ce8
commit
46cdc5f1ca
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: window.c,v 1.22 2003/03/12 05:40:46 rcampbell Exp $
|
||||
/* $Id: window.c,v 1.23 2003/03/18 06:44:11 rcampbell Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS user32.dll
|
||||
|
@ -760,7 +760,9 @@ IsWindowVisible(HWND hWnd)
|
|||
WINBOOL STDCALL
|
||||
IsZoomed(HWND hWnd)
|
||||
{
|
||||
return FALSE;
|
||||
ULONG uStyle = GetWindowLong(hWnd, GWL_STYLE);
|
||||
|
||||
return (uStyle & WS_MAXIMIZE);
|
||||
}
|
||||
|
||||
WINBOOL STDCALL
|
||||
|
|
Loading…
Reference in a new issue