Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
cd4e1e51
Commit
cd4e1e51
authored
Jul 18, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some no longer needed stub functions.
parent
15ec9687
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
178 deletions
+0
-178
Makefile.in
dlls/ttydrv/Makefile.in
+0
-1
user.c
dlls/ttydrv/user.c
+0
-162
winetty.drv.spec
dlls/ttydrv/winetty.drv.spec
+0
-15
No files found.
dlls/ttydrv/Makefile.in
View file @
cd4e1e51
...
...
@@ -13,7 +13,6 @@ C_SRCS = \
objects.c
\
palette.c
\
ttydrv_main.c
\
user.c
\
wnd.c
@MAKE_DLL_RULES@
...
...
dlls/ttydrv/user.c
deleted
100644 → 0
View file @
15ec9687
/*
* TTYDRV USER driver functions
*
* Copyright 1998 Patrik Stridvall
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "dinput.h"
#include "ttydrv.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ttydrv
);
struct
tagCURSORICONINFO
;
/***********************************************************************
* VkKeyScanEx (TTYDRV.@)
*/
SHORT
TTYDRV_VkKeyScanEx
(
WCHAR
cChar
,
HKL
hkl
)
{
return
0
;
}
/***********************************************************************
* MapVirtualKeyEx (TTYDRV.@)
*/
UINT
TTYDRV_MapVirtualKeyEx
(
UINT
wCode
,
UINT
wMapType
,
HKL
hkl
)
{
return
0
;
}
/***********************************************************************
* GetKeyNameText (TTYDRV.@)
*/
INT
TTYDRV_GetKeyNameText
(
LONG
lParam
,
LPWSTR
lpBuffer
,
INT
nSize
)
{
if
(
lpBuffer
&&
nSize
)
{
*
lpBuffer
=
0
;
}
return
0
;
}
/***********************************************************************
* ToUnicodeEx (TTYDRV.@)
*/
INT
TTYDRV_ToUnicodeEx
(
UINT
virtKey
,
UINT
scanCode
,
LPBYTE
lpKeyState
,
LPWSTR
pwszBuff
,
int
cchBuff
,
UINT
flags
,
HKL
hkl
)
{
return
0
;
}
/***********************************************************************
* Beep (TTYDRV.@)
*/
void
TTYDRV_Beep
(
void
)
{
}
/***********************************************************************
* SetCursor (TTYDRV.@)
*/
void
TTYDRV_SetCursor
(
struct
tagCURSORICONINFO
*
lpCursor
)
{
}
/***********************************************************************
* GetScreenSaveActive (TTYDRV.@)
*
* Returns the active status of the screen saver
*/
BOOL
TTYDRV_GetScreenSaveActive
(
void
)
{
return
FALSE
;
}
/***********************************************************************
* SetScreenSaveActive (TTYDRV.@)
*
* Activate/Deactivate the screen saver
*/
void
TTYDRV_SetScreenSaveActive
(
BOOL
bActivate
)
{
FIXME
(
"(%d): stub
\n
"
,
bActivate
);
}
/***********************************************************************
* AcquireClipboard (TTYDRV.@)
*/
void
TTYDRV_AcquireClipboard
(
void
)
{
}
/***********************************************************************
* ReleaseClipboard (TTYDRV.@)
*/
void
TTYDRV_ReleaseClipboard
(
void
)
{
}
/***********************************************************************
* SetClipboardData (TTYDRV.@)
*/
void
TTYDRV_SetClipboardData
(
UINT
wFormat
)
{
}
/***********************************************************************
* GetClipboardData (TTYDRV.@)
*/
BOOL
TTYDRV_GetClipboardData
(
UINT
wFormat
)
{
return
FALSE
;
}
/***********************************************************************
* IsClipboardFormatAvailable (TTYDRV.@)
*/
BOOL
TTYDRV_IsClipboardFormatAvailable
(
UINT
wFormat
)
{
return
FALSE
;
}
/**************************************************************************
* RegisterClipboardFormat (TTYDRV.@)
*
* Registers a custom clipboard format
* Returns: TRUE - new format registered, FALSE - Format already registered
*/
BOOL
TTYDRV_RegisterClipboardFormat
(
LPCSTR
FormatName
)
{
return
TRUE
;
}
/**************************************************************************
* IsSelectionOwner (TTYDRV.@)
*
* Returns: TRUE - We(WINE) own the selection, FALSE - Selection not owned by us
*/
BOOL
TTYDRV_IsSelectionOwner
(
void
)
{
return
FALSE
;
}
dlls/ttydrv/winetty.drv.spec
View file @
cd4e1e51
...
...
@@ -36,24 +36,9 @@
# USER driver
@ cdecl VkKeyScanEx(long long) TTYDRV_VkKeyScanEx
@ cdecl MapVirtualKeyEx(long long long) TTYDRV_MapVirtualKeyEx
@ cdecl GetKeyNameText(long ptr long) TTYDRV_GetKeyNameText
@ cdecl ToUnicodeEx(long long ptr ptr long long long) TTYDRV_ToUnicodeEx
@ cdecl Beep() TTYDRV_Beep
@ cdecl SetCursor(ptr) TTYDRV_SetCursor
@ cdecl GetScreenSaveActive() TTYDRV_GetScreenSaveActive
@ cdecl SetScreenSaveActive(long) TTYDRV_SetScreenSaveActive
@ cdecl CreateDesktopWindow(long) TTYDRV_CreateDesktopWindow
@ cdecl CreateWindow(long ptr long) TTYDRV_CreateWindow
@ cdecl DestroyWindow(long) TTYDRV_DestroyWindow
@ cdecl GetDC(long long long long) TTYDRV_GetDC
@ cdecl SetWindowPos(ptr) TTYDRV_SetWindowPos
@ cdecl AcquireClipboard() TTYDRV_AcquireClipboard
@ cdecl ReleaseClipboard() TTYDRV_ReleaseClipboard
@ cdecl SetClipboardData(long) TTYDRV_SetClipboardData
@ cdecl GetClipboardData(long) TTYDRV_GetClipboardData
@ cdecl IsClipboardFormatAvailable(long) TTYDRV_IsClipboardFormatAvailable
@ cdecl RegisterClipboardFormat(str) TTYDRV_RegisterClipboardFormat
@ cdecl IsSelectionOwner() TTYDRV_IsSelectionOwner
@ cdecl ShowWindow(long long) TTYDRV_ShowWindow
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment