Changeset 4147 for trunk/src/user32/window.cpp
- Timestamp:
- Sep 2, 2000, 10:30:11 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/window.cpp
r3942 r4147 1 /* $Id: window.cpp,v 1.7 2 2000-08-02 20:18:25 birdExp $ */1 /* $Id: window.cpp,v 1.73 2000-09-02 08:30:11 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 707 707 BOOL WIN32API IsZoomed(HWND hwnd) 708 708 { 709 dprintf(("USER32: IsZoomed\n")); 710 return O32_IsZoomed(Win32BaseWindow::Win32ToOS2Handle(hwnd)); 709 DWORD style; 710 711 style = GetWindowLongA(hwnd, GWL_STYLE); 712 dprintf(("USER32: IsZoomed %x returned %d", hwnd, ((style & WS_MAXIMIZE) != 0))); 713 714 return (style & WS_MAXIMIZE) != 0; 711 715 } 712 716 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.