Ignore:
Timestamp:
May 9, 2000, 8:56:59 PM (25 years ago)
Author:
sandervl
Message:

lots of changes/fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/user32.cpp

    r3491 r3501  
    1 /* $Id: user32.cpp,v 1.80 2000-05-03 22:33:36 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.81 2000-05-09 18:56:57 sandervl Exp $ */
    22
    33/*
     
    122122BOOL WIN32API InflateRect( PRECT lprc, int dx, int  dy)
    123123{
    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));
    125125    if (!lprc)
    126126    {
     
    140140BOOL WIN32API IntersectRect( PRECT lprcDst, const RECT * lprcSrc1, const RECT * lprcSrc2)
    141141{
    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));
    143143    if (!lprcSrc1 || !lprcSrc2)
    144144    {
    145       SetLastError(ERROR_INVALID_PARAMETER);
    146       return FALSE;
     145        SetLastError(ERROR_INVALID_PARAMETER);
     146        return FALSE;
    147147    }
    148148
     
    182182BOOL WIN32API OffsetRect( PRECT lprc, int x, int  y)
    183183{
    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));
    185185    if (!lprc)
    186186    {
    187       SetLastError(ERROR_INVALID_PARAMETER);
    188       return FALSE;
     187        SetLastError(ERROR_INVALID_PARAMETER);
     188        return FALSE;
    189189    }
    190190
     
    200200BOOL WIN32API PtInRect( const RECT *lprc, POINT pt)
    201201{
    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));
    203203    if (!lprc)
    204204    {
Note: See TracChangeset for help on using the changeset viewer.