Added version info to 16-bit shell.dll.
[wine/multimedia.git] / dlls / ttydrv / user.c
blobff1c58759f0bc1eb9a2ac3917f7e699b426c5df9
1 /*
2 * TTYDRV USER driver functions
4 * Copyright 1998 Patrik Stridvall
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.
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.
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
21 #include "config.h"
23 #include "dinput.h"
24 #include "gdi.h"
25 #include "ttydrv.h"
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(ttydrv);
31 /***********************************************************************
32 * VkKeyScan (TTYDRV.@)
34 WORD TTYDRV_VkKeyScan(CHAR cChar)
36 return 0;
39 /***********************************************************************
40 * MapVirtualKey (TTYDRV.@)
42 UINT16 TTYDRV_MapVirtualKey(UINT16 wCode, UINT16 wMapType)
44 return 0;
47 /***********************************************************************
48 * GetKeyNameText (TTYDRV.@)
50 INT16 TTYDRV_GetKeyNameText( LONG lParam, LPSTR lpBuffer, INT16 nSize )
52 if(lpBuffer && nSize)
54 *lpBuffer = 0;
56 return 0;
59 /***********************************************************************
60 * ToUnicode (TTYDRV.@)
62 INT TTYDRV_ToUnicode( UINT virtKey, UINT scanCode, LPBYTE lpKeyState,
63 LPWSTR pwszBuff, int cchBuff, UINT flags )
65 return 0;
68 /***********************************************************************
69 * Beep (TTYDRV.@)
71 void TTYDRV_Beep(void)
75 /***********************************************************************
76 * SetCursor (TTYDRV.@)
78 void TTYDRV_SetCursor( struct tagCURSORICONINFO *lpCursor )
82 /***********************************************************************
83 * GetScreenSaveActive (TTYDRV.@)
85 * Returns the active status of the screen saver
87 BOOL TTYDRV_GetScreenSaveActive(void)
89 return FALSE;
92 /***********************************************************************
93 * SetScreenSaveActive (TTYDRV.@)
95 * Activate/Deactivate the screen saver
97 void TTYDRV_SetScreenSaveActive(BOOL bActivate)
99 FIXME("(%d): stub\n", bActivate);
102 /***********************************************************************
103 * AcquireClipboard (TTYDRV.@)
105 void TTYDRV_AcquireClipboard(void)
109 /***********************************************************************
110 * ReleaseClipboard (TTYDRV.@)
112 void TTYDRV_ReleaseClipboard(void)
116 /***********************************************************************
117 * SetClipboardData (TTYDRV.@)
119 void TTYDRV_SetClipboardData(UINT wFormat)
123 /***********************************************************************
124 * GetClipboardData (TTYDRV.@)
126 BOOL TTYDRV_GetClipboardData(UINT wFormat)
128 return FALSE;
131 /***********************************************************************
132 * IsClipboardFormatAvailable (TTYDRV.@)
134 BOOL TTYDRV_IsClipboardFormatAvailable(UINT wFormat)
136 return FALSE;
139 /**************************************************************************
140 * RegisterClipboardFormat (TTYDRV.@)
142 * Registers a custom clipboard format
143 * Returns: TRUE - new format registered, FALSE - Format already registered
145 BOOL TTYDRV_RegisterClipboardFormat( LPCSTR FormatName )
147 return TRUE;
150 /**************************************************************************
151 * IsSelectionOwner (TTYDRV.@)
153 * Returns: TRUE - We(WINE) own the selection, FALSE - Selection not owned by us
155 BOOL TTYDRV_IsSelectionOwner(void)
157 return FALSE;