Changeset 5196
- Timestamp:
- Feb 19, 2001, 10:43:18 PM (24 years ago)
- 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.9 1 2001-02-18 14:18:39sandervl Exp $ */1 /* $Id: user32.cpp,v 1.92 2001-02-19 21:43:12 sandervl Exp $ */ 2 2 3 3 /* … … 1599 1599 int WIN32API FillRect(HDC hDC, const RECT * lprc, HBRUSH hbr) 1600 1600 { 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)); 1602 1602 return O32_FillRect(hDC,lprc,hbr); 1603 1603 } … … 1613 1613 BOOL WIN32API InvertRect( HDC hDC, const RECT * lprc) 1614 1614 { 1615 dprintf(("USER32: InvertRect\n"));1615 dprintf(("USER32: InvertRect %x", hDC)); 1616 1616 return O32_InvertRect(hDC,lprc); 1617 1617 } 1618 1618 1619 1619 /* System Information Functions */ 1620 1621 int WIN32API GetKeyboardType( int nTypeFlag)1622 {1623 dprintf(("USER32: GetKeyboardType\n"));1624 return O32_GetKeyboardType(nTypeFlag);1625 }1626 1620 1627 1621 /* 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:00sandervl Exp $ */1 /* $Id: winkeyboard.cpp,v 1.8 2001-02-19 21:43:18 sandervl Exp $ */ 2 2 /* 3 3 * Win32 <-> PM key translation … … 296 296 //****************************************************************************** 297 297 //****************************************************************************** 298 int WIN32API GetKeyboardType( int nTypeFlag) 299 { 300 dprintf(("USER32: GetKeyboardType\n")); 301 return O32_GetKeyboardType(nTypeFlag); 302 } 303 //****************************************************************************** 304 //****************************************************************************** 298 305 BOOL WIN32API GetKeyboardState(PBYTE lpKeyState) 299 306 {
Note:
See TracChangeset
for help on using the changeset viewer.