- Timestamp:
- Nov 16, 2001, 5:27:54 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/line.cpp
r7361 r7366 1 /* $Id: line.cpp,v 1.1 1 2001-11-16 15:51:00 phallerExp $ */1 /* $Id: line.cpp,v 1.12 2001-11-16 16:27:54 sandervl Exp $ */ 2 2 /* 3 3 * Line API's … … 21 21 #define ROUND_FLOAT(x) ((INT)((x < 0) ? x-0.5:x+0.5)) 22 22 23 static VOID INLINEtoWin32LineEnd(PPOINTLOS2 startPt,INT nXEnd,INT nYEnd,PPOINTLOS2 pt)23 VOID toWin32LineEnd(PPOINTLOS2 startPt,INT nXEnd,INT nYEnd,PPOINTLOS2 pt) 24 24 { 25 25 if ((startPt->x != nXEnd) || (startPt->y != nYEnd)) … … 49 49 } 50 50 51 static BOOL INLINEdrawSingleLinePoint(HDC hdc,pDCData pHps,PPOINTLOS2 pt)51 BOOL drawSingleLinePoint(HDC hdc,pDCData pHps,PPOINTLOS2 pt) 52 52 { 53 53 LOGPEN penInfo;
Note:
See TracChangeset
for help on using the changeset viewer.