Changeset 397 for trunk/src/user32/new/window.cpp
- Timestamp:
- Jul 26, 1999, 11:01:34 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/window.cpp
r395 r397 1 /* $Id: window.cpp,v 1.1 2 1999-07-25 17:47:25sandervl Exp $ */1 /* $Id: window.cpp,v 1.13 1999-07-26 09:01:34 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 65 65 cs.lpszClass = className; 66 66 cs.dwExStyle = exStyle; 67 dprintf(("CreateWindowExA: (%d,%d) (%d,%d), %x %x", x, y, width, height, style, exStyle)); 67 68 window = new Win32Window( &cs, classAtom, FALSE ); 68 69 if(window == NULL) … … 616 617 BOOL WIN32API GetClientRect( HWND hwnd, PRECT pRect) 617 618 { 618 #ifdef DEBUG 619 WriteLog("USER32: GetClientRect of %X\n", hwnd); 620 #endif 619 BOOL rc; 620 621 621 hwnd = Win32Window::Win32ToOS2Handle(hwnd); 622 return OSLibWinQueryWindowRect(hwnd, pRect); 622 rc = OSLibWinQueryWindowRect(hwnd, pRect); 623 dprintf(("USER32: GetClientRect of %X returned (%d,%d) (%d,%d)\n", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom)); 624 return rc; 623 625 } 624 626 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.