Ignore:
Timestamp:
Feb 19, 2001, 10:43:18 PM (25 years ago)
Author:
sandervl
Message:

update

File:
1 edited

Legend:

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

    r5164 r5196  
    1 /* $Id: user32.cpp,v 1.91 2001-02-18 14:18:39 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.92 2001-02-19 21:43:12 sandervl Exp $ */
    22
    33/*
     
    15991599int WIN32API FillRect(HDC hDC, const RECT * lprc, HBRUSH hbr)
    16001600{
    1601     dprintf(("USER32:  FillRect %x (%d,%d)(%d,%d) brush %X\n", hDC, lprc->left, lprc->top, lprc->right, lprc->bottom, hbr));
     1601    dprintf(("USER32:  FillRect %x (%d,%d)(%d,%d) brush %X", hDC, lprc->left, lprc->top, lprc->right, lprc->bottom, hbr));
    16021602    return O32_FillRect(hDC,lprc,hbr);
    16031603}
     
    16131613BOOL WIN32API InvertRect( HDC hDC, const RECT * lprc)
    16141614{
    1615     dprintf(("USER32:  InvertRect\n"));
     1615    dprintf(("USER32: InvertRect %x", hDC));
    16161616    return O32_InvertRect(hDC,lprc);
    16171617}
    16181618
    16191619/* System Information Functions */
    1620 
    1621 int WIN32API GetKeyboardType( int nTypeFlag)
    1622 {
    1623     dprintf(("USER32:  GetKeyboardType\n"));
    1624     return O32_GetKeyboardType(nTypeFlag);
    1625 }
    16261620
    16271621/* Window Station and Desktop Functions */
Note: See TracChangeset for help on using the changeset viewer.