Changeset 3482 for trunk/src/user32/uitools.cpp
- Timestamp:
- May 2, 2000, 10:50:53 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/uitools.cpp
r2873 r3482 1 /* $Id: uitools.cpp,v 1.2 6 2000-02-23 17:05:17 cbratschiExp $ */1 /* $Id: uitools.cpp,v 1.27 2000-05-02 20:50:49 sandervl Exp $ */ 2 2 /* 3 3 * User Interface Functions … … 1614 1614 //****************************************************************************** 1615 1615 //****************************************************************************** 1616 BOOL WIN32API DrawFocusRect( HDC arg1, const RECT * arg2) 1617 { 1618 #ifdef DEBUG 1619 WriteLog("USER32: DrawFocusRect\n"); 1620 #endif 1621 return O32_DrawFocusRect(arg1, arg2); 1616 BOOL WIN32API DrawFocusRect( HDC hdc, const RECT *lpRect) 1617 { 1618 BOOL rc; 1619 1620 rc = O32_DrawFocusRect(hdc, lpRect); 1621 dprintf(("USER32: DrawFocusRect %x %x returned %d", hdc, lpRect, rc)); 1622 return rc; 1622 1623 } 1623 1624 //****************************************************************************** … … 1631 1632 COLORREF oldFg,oldBg; 1632 1633 1633 #ifdef DEBUG 1634 WriteLog("USER32: DrawIcon\n"); 1635 #endif 1634 dprintf(("USER32: DrawIcon\n")); 1636 1635 1637 1636 if (!hDC || !hIcon) … … 1681 1680 INT oldStretchMode; 1682 1681 1683 #ifdef DEBUG 1684 WriteLog("USER32: DrawIconEx\n"); 1685 #endif 1682 dprintf(("USER32: DrawIconEx")); 1686 1683 1687 1684 //CB: istepIfAniCur, DI_COMPAT ignored
Note:
See TracChangeset
for help on using the changeset viewer.