Changeset 328 for trunk/src/user32/new/oslibgdi.cpp
- Timestamp:
- Jul 18, 1999, 4:39:35 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/oslibgdi.cpp
r325 r328 1 /* $Id: oslibgdi.cpp,v 1. 1 1999-07-18 10:39:51sandervl Exp $ */1 /* $Id: oslibgdi.cpp,v 1.2 1999-07-18 14:39:35 sandervl Exp $ */ 2 2 /* 3 3 * Window GDI wrapper functions for OS/2 … … 26 26 PRECTL pWinRect = (PRECTL)pRectl; 27 27 ULONG tmp; 28 28 29 29 tmp = pWinRect->yBottom; 30 30 pWinRect->yBottom = pWinRect->yTop; … … 74 74 HWND hwndParent; 75 75 RECTLOS2 rectParent = {0}; 76 76 77 77 hwndParent = WinQueryWindow(hwndChild, QW_PARENT); 78 78 WinQueryWindowRect(hwndParent, (PRECTL)&rectParent); … … 110 110 // 111 111 // Parameters: 112 // hwndChild: 112 // hwndChild: Child window handle 113 113 // rectChild: OS/2 child window RECTL 114 114 // 115 115 // Returns: 116 116 // rectChild: Converted OS/2 rectange stored in Win32 RECTL (yTop & yBottom reversed) 117 // TRUE: 118 // FALSE: 117 // TRUE: Success 118 // FALSE: Failures 119 119 //****************************************************************************** 120 120 BOOL MapOS2ToWin32Rectl(HWND hwndChild, PRECTLOS2 rectChild, PRECT rectWin32) … … 142 142 // Returns: 143 143 // rectChild: Converted OS/2 rectange stored in Win32 RECTL (yTop & yBottom reversed) 144 // TRUE: 145 // FALSE: 144 // TRUE: Success 145 // FALSE: Failures 146 146 //****************************************************************************** 147 147 BOOL MapOS2ToWin32Rectl(PRECTLOS2 rectParent, PRECTLOS2 rectChild, PRECT rectWin32) … … 162 162 // rectChild: OS/2 Child window RECTL (OUT) 163 163 // Returns: 164 // TRUE: 165 // FALSE: 164 // TRUE: Success 165 // FALSE: Failures 166 166 //****************************************************************************** 167 167 BOOL MapWin32ToOS2Rectl(HWND hwndChild, PRECT rectWin32, PRECTLOS2 rectChild) … … 188 188 // rectChild: OS/2 Child window RECTL (OUT) 189 189 // Returns: 190 // TRUE: 191 // FALSE: 190 // TRUE: Success 191 // FALSE: Failures 192 192 //****************************************************************************** 193 193 BOOL MapWin32ToOS2Rectl(PRECTLOS2 rectParent, PRECT rectWin32, PRECTLOS2 rectChild)
Note:
See TracChangeset
for help on using the changeset viewer.