Ignore:
Timestamp:
Apr 27, 2001, 7:37:23 PM (24 years ago)
Author:
sandervl
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gdi32/gdi32.cpp

    r5390 r5607  
    1 /* $Id: gdi32.cpp,v 1.67 2001-03-27 20:47:53 sandervl Exp $ */
     1/* $Id: gdi32.cpp,v 1.68 2001-04-27 17:37:23 sandervl Exp $ */
    22
    33/*
     
    223223//******************************************************************************
    224224//******************************************************************************
    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);
     225COLORREF 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//******************************************************************************
     235COLORREF 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);
    236239}
    237240//******************************************************************************
     
    786789BOOL WIN32API GetCharWidth32W(HDC hdc, UINT iFirstChar, UINT iLastChar, PINT pWidthArray)
    787790{
    788     dprintf(("GDI32: GetCharWidth32W, not properly implemented"));
     791    dprintf(("GDI32: GetCharWidth32W might not work properly %x %x %x %x", hdc, iFirstChar, iLastChar, pWidthArray));
    789792    return O32_GetCharWidth(hdc, iFirstChar, iLastChar, pWidthArray);
    790793}
Note: See TracChangeset for help on using the changeset viewer.