Changeset 10594 for trunk/src/gdi32/oslibgpi.cpp
- Timestamp:
- Apr 30, 2004, 3:27:19 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/oslibgpi.cpp
r10583 r10594 1 /* $Id: oslibgpi.cpp,v 1.1 8 2004-04-14 09:44:13sandervl Exp $ */1 /* $Id: oslibgpi.cpp,v 1.19 2004-04-30 13:27:18 sandervl Exp $ */ 2 2 3 3 /* … … 363 363 arcp.lS = 0; 364 364 if (!GpiSetArcParams(GetDCData(pHps)->hps,&arcp)) 365 return FALSE; 365 { 366 dprintf(("drawLinePointCircle: GpiSetArcParams failed with %x!!", WinGetLastError(0))); 367 return FALSE; 368 } 366 369 367 370 AREABUNDLE newAreaBundle, oldAreaBundle; … … 378 381 379 382 if (!GpiSetAttrs(GetDCData(pHps)->hps,PRIM_AREA,ABB_COLOR | ABB_MIX_MODE | ABB_SET | ABB_SYMBOL,0,(PBUNDLE)&newAreaBundle)) 380 return FALSE; 383 { 384 dprintf(("drawLinePointCircle: GpiSetAttrs failed with %x!!", WinGetLastError(0))); 385 return FALSE; 386 } 381 387 382 388 if (GpiFullArc(GetDCData(pHps)->hps,DRO_FILL,MAKEFIXED((width-1)>>1,0)) == GPI_ERROR) 383 rc = FALSE; 389 { 390 dprintf(("drawLinePointCircle: GpiFullArc failed with %x!!", WinGetLastError(0))); 391 rc = FALSE; 392 } 384 393 GpiSetAttrs(GetDCData(pHps)->hps,PRIM_AREA,ABB_COLOR | ABB_MIX_MODE | ABB_SET | ABB_SYMBOL,0,(PBUNDLE)&oldAreaBundle); 385 394
Note:
See TracChangeset
for help on using the changeset viewer.