Changeset 5709 for trunk/src


Ignore:
Timestamp:
May 15, 2001, 12:34:02 PM (24 years ago)
Author:
sandervl
Message:

logging updates

Location:
trunk/src/gdi32
Files:
2 edited

Legend:

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

    r5607 r5709  
    1 /* $Id: gdi32.cpp,v 1.68 2001-04-27 17:37:23 sandervl Exp $ */
     1/* $Id: gdi32.cpp,v 1.69 2001-05-15 10:34:01 sandervl Exp $ */
    22
    33/*
     
    984984//******************************************************************************
    985985//******************************************************************************
    986 ODINFUNCTION3(BOOL, LPtoDP, HDC, hdc, PPOINT, lpPoints, int, nCount)
    987 {
    988     return O32_LPtoDP(hdc, lpPoints, nCount);
     986BOOL WIN32API LPtoDP(HDC hdc, PPOINT lpPoints, int nCount)
     987{
     988 BOOL ret;
     989
     990    dprintf(("LPtoDP %x %x %d", hdc, lpPoints, nCount));
     991#ifdef DEBUG
     992    if(nCount && lpPoints) {
     993        for(int i=0;i<nCount;i++) {
     994            dprintf(("LPtoDP in (%d,%d)", lpPoints[i].x, lpPoints[i].y));
     995        }
     996    }
     997#endif
     998    ret = O32_LPtoDP(hdc, lpPoints, nCount);
     999#ifdef DEBUG
     1000    if(nCount && lpPoints) {
     1001        for(int i=0;i<nCount;i++) {
     1002            dprintf(("LPtoDP out (%d,%d)", lpPoints[i].x, lpPoints[i].y));
     1003        }
     1004    }
     1005#endif
     1006    return ret;
    9891007}
    9901008//******************************************************************************
  • trunk/src/gdi32/transform.cpp

    r4848 r5709  
    1 /* $Id: transform.cpp,v 1.2 2000-12-29 18:40:44 sandervl Exp $ */
     1/* $Id: transform.cpp,v 1.3 2001-05-15 10:34:02 sandervl Exp $ */
    22
    33/*
     
    307307
    308308    //todo: metafile recording!!!
     309    dprintf(("SetMapMode %x %x", hdc, mode));
    309310    return setMapMode(pHps, mode);
    310311}
Note: See TracChangeset for help on using the changeset viewer.