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