Better implementation of GetCalendarInfo{A,W}, not perfect.
[wine] / dlls / ttydrv / objects.c
1 /*
2  * TTY DC objects
3  *
4  * Copyright 1999 Patrik Stridvall
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22
23 #include "bitmap.h"
24 #include "gdi.h"
25 #include "ttydrv.h"
26 #include "wine/debug.h"
27
28 WINE_DEFAULT_DEBUG_CHANNEL(ttydrv);
29
30 /**********************************************************************/
31
32 extern BOOL TTYDRV_DC_BITMAP_DeleteObject(HBITMAP hbitmap, BITMAPOBJ *bitmap);
33
34
35 /***********************************************************************
36  *              SelectFont   (TTYDRV.@)
37  */
38 HFONT TTYDRV_SelectFont(TTYDRV_PDEVICE *physDev, HFONT hfont)
39 {
40   TRACE("(%x, 0x%04x)\n", physDev->hdc, hfont);
41
42   return TRUE; /* Use device font */
43 }
44
45 /***********************************************************************
46  *           TTYDRV_DC_DeleteObject
47  */
48 BOOL TTYDRV_DC_DeleteObject(HGDIOBJ handle)
49 {
50   GDIOBJHDR *ptr = GDI_GetObjPtr(handle, MAGIC_DONTCARE);
51   BOOL result;
52   
53   if(!ptr) return FALSE;
54      
55   switch(GDIMAGIC(ptr->wMagic))
56   {
57     case BITMAP_MAGIC:
58       result = TTYDRV_DC_BITMAP_DeleteObject(handle, (BITMAPOBJ *) ptr);
59       break;
60     case BRUSH_MAGIC:
61     case FONT_MAGIC:
62     case PEN_MAGIC:
63     case REGION_MAGIC:
64       result = TRUE;
65       break;
66     default:
67       ERR("handle (0x%04x) has unknown magic (0x%04x)\n", handle, GDIMAGIC(ptr->wMagic));
68       result = FALSE;
69   }
70
71   GDI_ReleaseObj(handle);
72
73   return result;
74 }