Changeset 2775 for trunk/src


Ignore:
Timestamp:
Feb 14, 2000, 5:44:45 PM (26 years ago)
Author:
bird
Message:

Cosmetical change, GetCharWidthA/W -> GetCharWidth32A/W.
A define in wingdi.h did this before.

File:
1 edited

Legend:

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

    r2738 r2775  
    1 /* $Id: gdi32.cpp,v 1.40 2000-02-10 18:48:44 cbratschi Exp $ */
     1/* $Id: gdi32.cpp,v 1.41 2000-02-14 16:44:45 bird Exp $ */
    22
    33/*
     
    484484//******************************************************************************
    485485//******************************************************************************
    486 HDC WIN32API CreateICA(LPCSTR lpszDriver, LPCSTR lpszDevice, LPCSTR lpszOutput, 
     486HDC WIN32API CreateICA(LPCSTR lpszDriver, LPCSTR lpszDevice, LPCSTR lpszOutput,
    487487                       const DEVMODEA *lpdvmInit)
    488488{
     
    741741//******************************************************************************
    742742//******************************************************************************
    743 BOOL WIN32API GetCharWidthA( HDC arg1, UINT arg2, UINT arg3, PINT  arg4)
    744 {
    745     dprintf(("GDI32: GetCharWidthA"));
     743BOOL WIN32API GetCharWidth32A( HDC arg1, UINT arg2, UINT arg3, PINT  arg4)
     744{
     745    dprintf(("GDI32: GetCharWidth32A"));
    746746    return O32_GetCharWidth(arg1, arg2, arg3, arg4);
    747747}
     
    749749//TODO: Cut off Unicode chars?
    750750//******************************************************************************
    751 BOOL WIN32API GetCharWidthW(HDC arg1, UINT iFirstChar, UINT iLastChar, PINT  arg4)
    752 {
    753     dprintf(("GDI32: GetCharWidthW, not properly implemented"));
     751BOOL WIN32API GetCharWidth32W(HDC arg1, UINT iFirstChar, UINT iLastChar, PINT  arg4)
     752{
     753    dprintf(("GDI32: GetCharWidth32W, not properly implemented"));
    754754    return O32_GetCharWidth(arg1, iFirstChar, iLastChar, arg4);
    755755}
Note: See TracChangeset for help on using the changeset viewer.