Changeset 1931 for trunk/src


Ignore:
Timestamp:
Dec 2, 1999, 12:30:30 AM (26 years ago)
Author:
sandervl
Message:

Ported GetTextCharset & GetTextCharsetInfo (Wine: 991031)

Location:
trunk/src/gdi32
Files:
2 added
2 edited

Legend:

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

    r1830 r1931  
    1 /* $Id: gdi32.cpp,v 1.17 1999-11-24 19:30:18 sandervl Exp $ */
     1/* $Id: gdi32.cpp,v 1.18 1999-12-01 23:30:08 sandervl Exp $ */
    22
    33/*
     
    21362136}
    21372137//******************************************************************************
    2138 //TODO:
    2139 //Should return the character set of the font currently selected into the hdc
    2140 //******************************************************************************
    2141 UINT WIN32API GetTextCharset(HDC hdc)
    2142 {
    2143   dprintf(("GDI32: GetTextCharset, not complete\n"));
    2144   return(ANSI_CHARSET);
    2145 }
    2146 //******************************************************************************
    21472138//Selects the current path as a clipping region for a device context, combining
    21482139//any existing clipping region by using the specified mode
     
    23712362//******************************************************************************
    23722363//******************************************************************************
    2373 UINT WIN32API SetSystemPaletteUse(HDC hdc, UINT flags)
    2374 {
    2375   dprintf(("GDI32: SetSystemPaletteUse %X %X, not implemented (GDI_ERROR)\n", hdc, flags));
    2376   return(GDI_ERROR);
    2377 }
    2378 //******************************************************************************
    2379 //******************************************************************************
    23802364BOOL WIN32API SetObjectOwner( HGDIOBJ arg1, int arg2 )
    23812365{
     
    24462430  FreeAsciiString(astring);
    24472431  return rc;
    2448 }
    2449 //******************************************************************************
    2450 //******************************************************************************
    2451 UINT WIN32API GetTextCharsetInfo(                                             /*KSO Thu 21.05.1998*/
    2452         HDC     hdc,
    2453         LPFONTSIGNATURE lpSig,
    2454         DWORD   dwFlags
    2455         )
    2456 {
    2457         dprintf(("GDI32: GetTextCharsetInfo - stub\n"));
    2458         return FALSE;
    2459 }
    2460 //******************************************************************************
    2461 //******************************************************************************
    2462 UINT WIN32API GetSystemPaletteUse(                                   /*KSO Thu 21.05.1998*/
    2463         HDC             hdc
    2464         )
    2465 {
    2466         dprintf(("GDI32: GetSystemPaletteUse - stub\n"));
    2467         return FALSE; /*?*/
    24682432}
    24692433//******************************************************************************
  • trunk/src/gdi32/makefile

    r1710 r1931  
    1 # $Id: makefile,v 1.11 1999-11-12 11:38:39 sandervl Exp $
     1# $Id: makefile,v 1.12 1999-12-01 23:30:09 sandervl Exp $
    22
    33#
     
    2222TARGET = gdi32
    2323
    24 OBJS =  gdi32.obj opengl.obj callback.obj dibsect.obj initterm.obj oslibgdi.obj font.obj
     24OBJS =  gdi32.obj opengl.obj callback.obj dibsect.obj initterm.obj oslibgdi.obj font.obj text.obj palette.obj
    2525
    2626
     
    5252    $(PDWIN32_INCLUDE)\misc.h \
    5353
     54text.obj: text.cpp \
     55    $(PDWIN32_INCLUDE)\misc.h \
     56
     57palette.obj: palette.cpp \
     58    $(PDWIN32_INCLUDE)\misc.h \
     59
    5460dibsect.obj: dibsect.cpp \
    5561    dibsect.h \
Note: See TracChangeset for help on using the changeset viewer.