- fix bug in 'Blt DEPTH_FILL' override
[wine] / dlls / ttydrv / user.c
1 /*
2  * TTYDRV USER driver functions
3  *
4  * Copyright 1998 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 "dinput.h"
24 #include "gdi.h"
25 #include "ttydrv.h"
26 #include "wine/debug.h"
27
28 WINE_DEFAULT_DEBUG_CHANNEL(ttydrv);
29
30 struct tagCURSORICONINFO;
31
32 /***********************************************************************
33  *              VkKeyScan (TTYDRV.@)
34  */
35 WORD TTYDRV_VkKeyScan(CHAR cChar)
36 {
37   return 0;
38 }
39
40 /***********************************************************************
41  *              MapVirtualKey (TTYDRV.@)
42  */
43 UINT16 TTYDRV_MapVirtualKey(UINT16 wCode, UINT16 wMapType)
44 {
45   return 0;
46 }
47
48 /***********************************************************************
49  *              GetKeyNameText (TTYDRV.@)
50  */
51 INT16 TTYDRV_GetKeyNameText( LONG lParam, LPSTR lpBuffer, INT16 nSize )
52 {
53   if(lpBuffer && nSize)
54     {
55       *lpBuffer = 0;
56     }
57   return 0;
58 }
59
60 /***********************************************************************
61  *              ToUnicode (TTYDRV.@)
62  */
63 INT TTYDRV_ToUnicode( UINT virtKey, UINT scanCode, LPBYTE lpKeyState,
64                       LPWSTR pwszBuff, int cchBuff, UINT flags )
65 {
66   return 0;
67 }
68
69 /***********************************************************************
70  *              Beep (TTYDRV.@)
71  */
72 void TTYDRV_Beep(void)
73 {
74 }
75
76 /***********************************************************************
77  *              SetCursor (TTYDRV.@)
78  */
79 void TTYDRV_SetCursor( struct tagCURSORICONINFO *lpCursor )
80 {
81 }
82
83 /***********************************************************************
84  *              GetScreenSaveActive (TTYDRV.@)
85  *
86  * Returns the active status of the screen saver
87  */
88 BOOL TTYDRV_GetScreenSaveActive(void)
89 {
90     return FALSE;
91 }
92
93 /***********************************************************************
94  *              SetScreenSaveActive (TTYDRV.@)
95  *
96  * Activate/Deactivate the screen saver
97  */
98 void TTYDRV_SetScreenSaveActive(BOOL bActivate)
99 {
100     FIXME("(%d): stub\n", bActivate);
101 }
102
103 /***********************************************************************
104  *              AcquireClipboard (TTYDRV.@)
105  */
106 void TTYDRV_AcquireClipboard(void)
107 {
108 }
109
110 /***********************************************************************
111  *              ReleaseClipboard (TTYDRV.@)
112  */
113 void TTYDRV_ReleaseClipboard(void)
114 {
115 }
116
117 /***********************************************************************
118  *              SetClipboardData (TTYDRV.@)
119  */
120 void TTYDRV_SetClipboardData(UINT wFormat)
121 {
122 }
123
124 /***********************************************************************
125  *              GetClipboardData (TTYDRV.@)
126  */
127 BOOL TTYDRV_GetClipboardData(UINT wFormat)
128 {
129   return FALSE;
130 }
131
132 /***********************************************************************
133  *              IsClipboardFormatAvailable (TTYDRV.@)
134  */
135 BOOL TTYDRV_IsClipboardFormatAvailable(UINT wFormat)
136 {
137   return FALSE;
138 }
139
140 /**************************************************************************
141  *              RegisterClipboardFormat (TTYDRV.@)
142  *
143  * Registers a custom clipboard format
144  * Returns: TRUE - new format registered, FALSE - Format already registered
145  */
146 BOOL TTYDRV_RegisterClipboardFormat( LPCSTR FormatName )
147 {
148   return TRUE;
149 }
150
151 /**************************************************************************
152  *              IsSelectionOwner (TTYDRV.@)
153  *
154  * Returns: TRUE - We(WINE) own the selection, FALSE - Selection not owned by us
155  */
156 BOOL TTYDRV_IsSelectionOwner(void)
157 {
158     return FALSE;
159 }