- Timestamp:
- Feb 14, 2000, 5:44:45 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/gdi32.cpp
r2738 r2775 1 /* $Id: gdi32.cpp,v 1.4 0 2000-02-10 18:48:44 cbratschiExp $ */1 /* $Id: gdi32.cpp,v 1.41 2000-02-14 16:44:45 bird Exp $ */ 2 2 3 3 /* … … 484 484 //****************************************************************************** 485 485 //****************************************************************************** 486 HDC WIN32API CreateICA(LPCSTR lpszDriver, LPCSTR lpszDevice, LPCSTR lpszOutput, 486 HDC WIN32API CreateICA(LPCSTR lpszDriver, LPCSTR lpszDevice, LPCSTR lpszOutput, 487 487 const DEVMODEA *lpdvmInit) 488 488 { … … 741 741 //****************************************************************************** 742 742 //****************************************************************************** 743 BOOL WIN32API GetCharWidth A( HDC arg1, UINT arg2, UINT arg3, PINT arg4)744 { 745 dprintf(("GDI32: GetCharWidth A"));743 BOOL WIN32API GetCharWidth32A( HDC arg1, UINT arg2, UINT arg3, PINT arg4) 744 { 745 dprintf(("GDI32: GetCharWidth32A")); 746 746 return O32_GetCharWidth(arg1, arg2, arg3, arg4); 747 747 } … … 749 749 //TODO: Cut off Unicode chars? 750 750 //****************************************************************************** 751 BOOL WIN32API GetCharWidth W(HDC arg1, UINT iFirstChar, UINT iLastChar, PINT arg4)752 { 753 dprintf(("GDI32: GetCharWidth W, not properly implemented"));751 BOOL WIN32API GetCharWidth32W(HDC arg1, UINT iFirstChar, UINT iLastChar, PINT arg4) 752 { 753 dprintf(("GDI32: GetCharWidth32W, not properly implemented")); 754 754 return O32_GetCharWidth(arg1, iFirstChar, iLastChar, arg4); 755 755 }
Note:
See TracChangeset
for help on using the changeset viewer.