Ignore:
Timestamp:
Jan 11, 2000, 12:29:16 AM (26 years ago)
Author:
sandervl
Message:

get/peekmessage fixes, timer fix, (user/new) replaced wm_hittest code; added wm_ncactivate, changed system menu

File:
1 edited

Legend:

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

    r2292 r2400  
    1 /* $Id: window.cpp,v 1.28 2000-01-02 19:30:46 cbratschi Exp $ */
     1/* $Id: window.cpp,v 1.29 2000-01-10 23:29:15 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    648648        return 0;
    649649    }
    650     rc = window->GetWindowRect(pRect);
     650    if(pRect == NULL) {
     651        SetLastError(ERROR_INVALID_PARAMETER);
     652        return 0;
     653    }
     654    *pRect = *window->getWindowRect();
    651655    dprintf(("GetWindowRect %x (%d,%d) (%d,%d)", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom));
    652656    return rc;
Note: See TracChangeset for help on using the changeset viewer.