Ignore:
Timestamp:
May 2, 2000, 10:50:53 PM (25 years ago)
Author:
sandervl
Message:

RDW_FRAME support for GetDCEx; added wine dialog change; added extra logging

File:
1 edited

Legend:

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

    r2873 r3482  
    1 /* $Id: uitools.cpp,v 1.26 2000-02-23 17:05:17 cbratschi Exp $ */
     1/* $Id: uitools.cpp,v 1.27 2000-05-02 20:50:49 sandervl Exp $ */
    22/*
    33 * User Interface Functions
     
    16141614//******************************************************************************
    16151615//******************************************************************************
    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);
     1616BOOL 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;
    16221623}
    16231624//******************************************************************************
     
    16311632  COLORREF oldFg,oldBg;
    16321633
    1633 #ifdef DEBUG
    1634   WriteLog("USER32:  DrawIcon\n");
    1635 #endif
     1634  dprintf(("USER32:  DrawIcon\n"));
    16361635
    16371636  if (!hDC || !hIcon)
     
    16811680  INT oldStretchMode;
    16821681
    1683 #ifdef DEBUG
    1684   WriteLog("USER32:  DrawIconEx\n");
    1685 #endif
     1682  dprintf(("USER32:  DrawIconEx"));
    16861683
    16871684  //CB: istepIfAniCur, DI_COMPAT ignored
Note: See TracChangeset for help on using the changeset viewer.