- Timestamp:
- Dec 2, 1999, 12:30:30 AM (26 years ago)
- 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.1 7 1999-11-24 19:30:18 sandervl Exp $ */1 /* $Id: gdi32.cpp,v 1.18 1999-12-01 23:30:08 sandervl Exp $ */ 2 2 3 3 /* … … 2136 2136 } 2137 2137 //****************************************************************************** 2138 //TODO:2139 //Should return the character set of the font currently selected into the hdc2140 //******************************************************************************2141 UINT WIN32API GetTextCharset(HDC hdc)2142 {2143 dprintf(("GDI32: GetTextCharset, not complete\n"));2144 return(ANSI_CHARSET);2145 }2146 //******************************************************************************2147 2138 //Selects the current path as a clipping region for a device context, combining 2148 2139 //any existing clipping region by using the specified mode … … 2371 2362 //****************************************************************************** 2372 2363 //****************************************************************************** 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 //******************************************************************************2380 2364 BOOL WIN32API SetObjectOwner( HGDIOBJ arg1, int arg2 ) 2381 2365 { … … 2446 2430 FreeAsciiString(astring); 2447 2431 return rc; 2448 }2449 //******************************************************************************2450 //******************************************************************************2451 UINT WIN32API GetTextCharsetInfo( /*KSO Thu 21.05.1998*/2452 HDC hdc,2453 LPFONTSIGNATURE lpSig,2454 DWORD dwFlags2455 )2456 {2457 dprintf(("GDI32: GetTextCharsetInfo - stub\n"));2458 return FALSE;2459 }2460 //******************************************************************************2461 //******************************************************************************2462 UINT WIN32API GetSystemPaletteUse( /*KSO Thu 21.05.1998*/2463 HDC hdc2464 )2465 {2466 dprintf(("GDI32: GetSystemPaletteUse - stub\n"));2467 return FALSE; /*?*/2468 2432 } 2469 2433 //****************************************************************************** -
trunk/src/gdi32/makefile
r1710 r1931 1 # $Id: makefile,v 1.1 1 1999-11-12 11:38:39 sandervl Exp $1 # $Id: makefile,v 1.12 1999-12-01 23:30:09 sandervl Exp $ 2 2 3 3 # … … 22 22 TARGET = gdi32 23 23 24 OBJS = gdi32.obj opengl.obj callback.obj dibsect.obj initterm.obj oslibgdi.obj font.obj 24 OBJS = gdi32.obj opengl.obj callback.obj dibsect.obj initterm.obj oslibgdi.obj font.obj text.obj palette.obj 25 25 26 26 … … 52 52 $(PDWIN32_INCLUDE)\misc.h \ 53 53 54 text.obj: text.cpp \ 55 $(PDWIN32_INCLUDE)\misc.h \ 56 57 palette.obj: palette.cpp \ 58 $(PDWIN32_INCLUDE)\misc.h \ 59 54 60 dibsect.obj: dibsect.cpp \ 55 61 dibsect.h \
Note:
See TracChangeset
for help on using the changeset viewer.