Ignore:
Timestamp:
Mar 31, 2001, 12:08:20 AM (24 years ago)
Author:
sandervl
Message:

syscolor change + iconsm creation in RegisterClassA/W

File:
1 edited

Legend:

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

    r5385 r5406  
    1 /* $Id: user32.cpp,v 1.94 2001-03-27 16:17:52 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.95 2001-03-30 22:08:19 sandervl Exp $ */
    22
    33/*
     
    15261526BOOL WIN32API InvertRect( HDC hDC, const RECT * lprc)
    15271527{
    1528     dprintf(("USER32: InvertRect %x", hDC));
     1528    if(lprc) {
     1529         dprintf(("USER32: InvertRect %x (%d,%d)(%d,%d)", hDC, lprc->left, lprc->top, lprc->right, lprc->bottom));
     1530    }
     1531    else dprintf(("USER32: InvertRect %x NULL", hDC));
    15291532    return O32_InvertRect(hDC,lprc);
    15301533}
Note: See TracChangeset for help on using the changeset viewer.