Changeset 5607 for trunk/src/gdi32/gdi32.cpp
- Timestamp:
- Apr 27, 2001, 7:37:23 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/gdi32.cpp
r5390 r5607 1 /* $Id: gdi32.cpp,v 1.6 7 2001-03-27 20:47:53 sandervl Exp $ */1 /* $Id: gdi32.cpp,v 1.68 2001-04-27 17:37:23 sandervl Exp $ */ 2 2 3 3 /* … … 223 223 //****************************************************************************** 224 224 //****************************************************************************** 225 COLORREF WIN32API GetPixel( HDC arg1, int arg2, int arg3) 226 { 227 //// dprintf(("GDI32: GetPixel\n")); 228 return O32_GetPixel(arg1, arg2, arg3); 229 } 230 //****************************************************************************** 231 //****************************************************************************** 232 COLORREF WIN32API SetPixel( HDC arg1, int arg2, int arg3, COLORREF arg4) 233 { 234 //// dprintf(("GDI32: SetPixel\n")); 235 return O32_SetPixel(arg1, arg2, arg3, arg4); 225 COLORREF WIN32API GetPixel( HDC hdc, int x, int y) 226 { 227 COLORREF color; 228 229 color = O32_GetPixel(hdc, x, y); 230 dprintf2(("GDI32: GetPixel %x (%d,%d) -> %x", hdc, x, y, color)); 231 return color; 232 } 233 //****************************************************************************** 234 //****************************************************************************** 235 COLORREF WIN32API SetPixel( HDC hdc, int x, int y, COLORREF color) 236 { 237 dprintf2(("GDI32: SetPixel %x (%d,%d) %x", hdc, x, y, color)); 238 return O32_SetPixel(hdc, x, y, color); 236 239 } 237 240 //****************************************************************************** … … 786 789 BOOL WIN32API GetCharWidth32W(HDC hdc, UINT iFirstChar, UINT iLastChar, PINT pWidthArray) 787 790 { 788 dprintf(("GDI32: GetCharWidth32W , not properly implemented"));791 dprintf(("GDI32: GetCharWidth32W might not work properly %x %x %x %x", hdc, iFirstChar, iLastChar, pWidthArray)); 789 792 return O32_GetCharWidth(hdc, iFirstChar, iLastChar, pWidthArray); 790 793 }
Note:
See TracChangeset
for help on using the changeset viewer.