Changeset 3501 for trunk/src/user32/user32.cpp
- Timestamp:
- May 9, 2000, 8:56:59 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/user32.cpp
r3491 r3501 1 /* $Id: user32.cpp,v 1.8 0 2000-05-03 22:33:36sandervl Exp $ */1 /* $Id: user32.cpp,v 1.81 2000-05-09 18:56:57 sandervl Exp $ */ 2 2 3 3 /* … … 122 122 BOOL WIN32API InflateRect( PRECT lprc, int dx, int dy) 123 123 { 124 dprintf2(("USER32: InflateRect\n"));124 dprintf2(("USER32: InflateRect (%d,%d)(%d,%d) %d,%d", lprc->left, lprc->top, lprc->right, lprc->bottom, dx, dy)); 125 125 if (!lprc) 126 126 { … … 140 140 BOOL WIN32API IntersectRect( PRECT lprcDst, const RECT * lprcSrc1, const RECT * lprcSrc2) 141 141 { 142 dprintf2(("USER32: IntersectRect \n"));142 dprintf2(("USER32: IntersectRect (%d,%d)(%d,%d) (%d,%d)(%d,%d)", lprcSrc1->left, lprcSrc1->top, lprcSrc1->right, lprcSrc1->bottom, lprcSrc2->left, lprcSrc2->top, lprcSrc2->right, lprcSrc2->bottom)); 143 143 if (!lprcSrc1 || !lprcSrc2) 144 144 { 145 SetLastError(ERROR_INVALID_PARAMETER);146 return FALSE;145 SetLastError(ERROR_INVALID_PARAMETER); 146 return FALSE; 147 147 } 148 148 … … 182 182 BOOL WIN32API OffsetRect( PRECT lprc, int x, int y) 183 183 { 184 dprintf2(("USER32: OffsetRect\n"));184 dprintf2(("USER32: OffsetRect (%d,%d)(%d,%d) %d %d", lprc->left, lprc->top, lprc->right, lprc->bottom, x, y)); 185 185 if (!lprc) 186 186 { 187 SetLastError(ERROR_INVALID_PARAMETER);188 return FALSE;187 SetLastError(ERROR_INVALID_PARAMETER); 188 return FALSE; 189 189 } 190 190 … … 200 200 BOOL WIN32API PtInRect( const RECT *lprc, POINT pt) 201 201 { 202 dprintf2(("USER32: PtInRect\n"));202 dprintf2(("USER32: PtInRect (%d,%d)(%d,%d) (%d,%d)", lprc->left, lprc->top, lprc->right, lprc->bottom, pt.x, pt.y)); 203 203 if (!lprc) 204 204 {
Note:
See TracChangeset
for help on using the changeset viewer.