- Timestamp:
- May 15, 2001, 12:34:02 PM (24 years ago)
- Location:
- trunk/src/gdi32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/gdi32.cpp
r5607 r5709 1 /* $Id: gdi32.cpp,v 1.6 8 2001-04-27 17:37:23sandervl Exp $ */1 /* $Id: gdi32.cpp,v 1.69 2001-05-15 10:34:01 sandervl Exp $ */ 2 2 3 3 /* … … 984 984 //****************************************************************************** 985 985 //****************************************************************************** 986 ODINFUNCTION3(BOOL, LPtoDP, HDC, hdc, PPOINT, lpPoints, int, nCount) 987 { 988 return O32_LPtoDP(hdc, lpPoints, nCount); 986 BOOL 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; 989 1007 } 990 1008 //****************************************************************************** -
trunk/src/gdi32/transform.cpp
r4848 r5709 1 /* $Id: transform.cpp,v 1. 2 2000-12-29 18:40:44sandervl Exp $ */1 /* $Id: transform.cpp,v 1.3 2001-05-15 10:34:02 sandervl Exp $ */ 2 2 3 3 /* … … 307 307 308 308 //todo: metafile recording!!! 309 dprintf(("SetMapMode %x %x", hdc, mode)); 309 310 return setMapMode(pHps, mode); 310 311 }
Note:
See TracChangeset
for help on using the changeset viewer.