Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
2743c81e
Commit
2743c81e
authored
24 years ago
by
Ken Coleman
Committed by
Alexandre Julliard
24 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added a first-cut version of MapVirtualKeyExW() that has the same
functionality (and limitations) as the ANSI version.
parent
6dc00548
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/user/user32.spec
+1
-1
1 addition, 1 deletion
dlls/user/user32.spec
include/winuser.h
+1
-0
1 addition, 0 deletions
include/winuser.h
windows/input.c
+10
-0
10 additions, 0 deletions
windows/input.c
with
12 additions
and
1 deletion
dlls/user/user32.spec
+
1
−
1
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
...
...
This diff is collapsed.
Click to expand it.
include/winuser.h
+
1
−
0
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
);
...
...
This diff is collapsed.
Click to expand it.
windows/input.c
+
10
−
0
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)
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment