Changeset 5196


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

update

Location:
trunk/src/user32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified 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 */
  • TabularUnified trunk/src/user32/winkeyboard.cpp

    r4499 r5196  
    1 /* $Id: winkeyboard.cpp,v 1.7 2000-10-18 20:17:00 sandervl Exp $ */
     1/* $Id: winkeyboard.cpp,v 1.8 2001-02-19 21:43:18 sandervl Exp $ */
    22/*
    33 * Win32 <-> PM key translation
     
    296296//******************************************************************************
    297297//******************************************************************************
     298int WIN32API GetKeyboardType( int nTypeFlag)
     299{
     300    dprintf(("USER32:  GetKeyboardType\n"));
     301    return O32_GetKeyboardType(nTypeFlag);
     302}
     303//******************************************************************************
     304//******************************************************************************
    298305BOOL WIN32API GetKeyboardState(PBYTE lpKeyState)
    299306{
Note: See TracChangeset for help on using the changeset viewer.