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
2743c81e
Commit
2743c81e
authored
Dec 05, 2000
by
Ken Coleman
Committed by
Alexandre Julliard
Dec 05, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a first-cut version of MapVirtualKeyExW() that has the same
functionality (and limitations) as the ANSI version.
parent
6dc00548
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
user32.spec
dlls/user/user32.spec
+1
-1
winuser.h
include/winuser.h
+1
-0
input.c
windows/input.c
+10
-0
No files found.
dlls/user/user32.spec
View file @
2743c81e
...
...
@@ -609,7 +609,7 @@ debug_channels (accel caret class clipboard combo cursor dc ddeml dialog driver
@ stdcall EnumDisplaySettingsA(str long ptr) EnumDisplaySettingsA
@ stdcall EnumDisplaySettingsW(wstr long ptr ) EnumDisplaySettingsW
@ stdcall GetWindowRgn(long long) GetWindowRgn
@ st
ub
MapVirtualKeyExW
@ st
dcall MapVirtualKeyExW(long long long)
MapVirtualKeyExW
@ stub RegisterServicesProcess
@ stdcall SetWindowRgn(long long long) SetWindowRgn
@ stdcall ToUnicodeEx(long long ptr wstr long long long) ToUnicodeEx
...
...
include/winuser.h
View file @
2743c81e
...
...
@@ -3592,6 +3592,7 @@ UINT WINAPI MapVirtualKeyA(UINT,UINT);
UINT
WINAPI
MapVirtualKeyW
(
UINT
,
UINT
);
#define MapVirtualKey WINELIB_NAME_AW(MapVirtualKey)
UINT
WINAPI
MapVirtualKeyExA
(
UINT
,
UINT
,
HKL
);
UINT
WINAPI
MapVirtualKeyExW
(
UINT
,
UINT
,
HKL
);
#define MapVirtualKeyEx WINELIB_NAME_AW(MapVirtualKeyEx)
BOOL
WINAPI
MapDialogRect
(
HWND
,
LPRECT
);
INT
WINAPI
MapWindowPoints
(
HWND
,
HWND
,
LPPOINT
,
UINT
);
...
...
windows/input.c
View file @
2743c81e
...
...
@@ -687,6 +687,16 @@ UINT WINAPI MapVirtualKeyExA(UINT code, UINT maptype, HKL hkl)
return
MapVirtualKey16
(
code
,
maptype
);
}
/******************************************************************************
* MapVirtualKeyExW (USER32.???)
*/
UINT
WINAPI
MapVirtualKeyExW
(
UINT
code
,
UINT
maptype
,
HKL
hkl
)
{
if
(
hkl
)
FIXME_
(
keyboard
)(
"(%d,%d,0x%08lx), hkl unhandled!
\n
"
,
code
,
maptype
,(
DWORD
)
hkl
);
return
MapVirtualKey16
(
code
,
maptype
);
}
/****************************************************************************
* GetKBCodePage (USER32.246)
*/
...
...
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