Ignore:
Timestamp:
May 2, 2000, 10:50:53 PM (25 years ago)
Author:
sandervl
Message:

RDW_FRAME support for GetDCEx; added wine dialog change; added extra logging

File:
1 edited

Legend:

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

    r3337 r3482  
    1 /* $Id: user32.cpp,v 1.77 2000-04-07 10:01:16 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.78 2000-05-02 20:50:50 sandervl Exp $ */
    22
    33/*
     
    151151       (lprcSrc1->top >= lprcSrc2->bottom) || (lprcSrc2->top >= lprcSrc1->bottom))
    152152    {
    153       SetLastError(ERROR_INVALID_PARAMETER);
    154       if (lprcDst) SetRectEmpty(lprcDst);
    155       return FALSE;
     153        //SvL: NT doesn't set the last error here
     154        //SetLastError(ERROR_INVALID_PARAMETER);
     155        if (lprcDst) SetRectEmpty(lprcDst);
     156        return FALSE;
    156157    }
    157158    if (lprcDst)
     
    12221223SHORT WIN32API GetKeyState( int nVirtKey)
    12231224{
    1224 //SvL: Hehe. 32 MB logfile for Opera after a minute.
    12251225    dprintf2(("USER32:  GetKeyState %d\n", nVirtKey));
    12261226    return O32_GetKeyState(nVirtKey);
Note: See TracChangeset for help on using the changeset viewer.