Changeset 1297 for trunk/src/user32/window.cpp
- Timestamp:
- Oct 14, 1999, 8:27:59 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/window.cpp
r1256 r1297 1 /* $Id: window.cpp,v 1.1 4 1999-10-12 14:47:24sandervl Exp $ */1 /* $Id: window.cpp,v 1.15 1999-10-14 18:27:59 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 617 617 BOOL WIN32API GetWindowRect( HWND hwnd, PRECT pRect) 618 618 { 619 Win32BaseWindow *window; 619 Win32BaseWindow *window; 620 BOOL rc; 620 621 621 622 window = Win32BaseWindow::GetWindowFromHandle(hwnd); … … 625 626 return 0; 626 627 } 627 dprintf(("GetWindowRect %x", hwnd)); 628 return window->GetWindowRect(pRect); 628 rc = window->GetWindowRect(pRect); 629 dprintf(("GetWindowRect %x (%d,%d) (%d,%d)", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom)); 630 return rc; 629 631 } 630 632 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.