Changeset 2400 for trunk/src/user32/new/window.cpp
- Timestamp:
- Jan 11, 2000, 12:29:16 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/window.cpp
r2292 r2400 1 /* $Id: window.cpp,v 1.2 8 2000-01-02 19:30:46 cbratschiExp $ */1 /* $Id: window.cpp,v 1.29 2000-01-10 23:29:15 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 648 648 return 0; 649 649 } 650 rc = window->GetWindowRect(pRect); 650 if(pRect == NULL) { 651 SetLastError(ERROR_INVALID_PARAMETER); 652 return 0; 653 } 654 *pRect = *window->getWindowRect(); 651 655 dprintf(("GetWindowRect %x (%d,%d) (%d,%d)", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom)); 652 656 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.