Changeset 2552 for trunk/src/user32/window.cpp
- Timestamp:
- Jan 28, 2000, 11:26:01 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/window.cpp
r2529 r2552 1 /* $Id: window.cpp,v 1.5 2 2000-01-27 17:21:10 cbratschiExp $ */1 /* $Id: window.cpp,v 1.53 2000-01-28 22:26:01 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 653 653 else 654 654 window = windowDesktop; 655 655 656 if(!window) { 656 657 dprintf(("GetWindowRect, window %x not found", hwnd)); … … 662 663 return FALSE; 663 664 } 664 *pRect = *window->getWindowRect(); 665 *pRect = *window->getWindowRect(); //always in screen coordinates 666 665 667 dprintf(("GetWindowRect %x (%d,%d) (%d,%d)", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom)); 666 668 return TRUE; … … 928 930 { 929 931 HWND DesktopWindow = windowDesktop->getWindowHandle(); 930 dprintf (("USER32: GetDesktopWindow, return%d\n", DesktopWindow));932 dprintf2(("USER32: GetDesktopWindow, returned %d\n", DesktopWindow)); 931 933 return DesktopWindow; 932 934 } … … 1053 1055 DWP *pDWP; 1054 1056 1055 dprintf(("USER32: BeginDeferWindowPos\n"));1056 1057 if (count <= 0) 1057 1058 { 1059 dprintf(("USER32: BeginDeferWindowPos invalid param %d", count)); 1058 1060 SetLastError(ERROR_INVALID_PARAMETER); 1059 1061 return 0; 1060 1062 } 1063 dprintf(("USER32: BeginDeferWindowPos %d", count)); 1061 1064 handle = (HDWP)HeapAlloc(GetProcessHeap(), 0, sizeof(DWP) + (count-1)*sizeof(WINDOWPOS) ); 1062 1065 if (!handle) … … 1100 1103 } 1101 1104 1105 dprintf(("USER32: DeferWindowPos hdwp %x hwnd %x hwndAfter %x (%d,%d)(%d,%d) %x", hdwp, hwnd, hwndAfter, 1106 x, y, cx, cy, flags)); 1102 1107 1103 1108 /* Numega Bounds Checker Demo dislikes the following code.
Note:
See TracChangeset
for help on using the changeset viewer.