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

logging updates

File:
1 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//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.