Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
592c910b
Commit
592c910b
authored
Feb 13, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Feb 13, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented MapVirtualKeyEx (ticket 21).
Ignore keyboard layout for now.
parent
7c5c8dd2
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
winuser.h
include/winuser.h
+2
-0
user32.spec
relay32/user32.spec
+1
-1
input.c
windows/input.c
+10
-0
No files found.
include/winuser.h
View file @
592c910b
...
...
@@ -3455,6 +3455,8 @@ INT32 WINAPI LookupIconIdFromDirectoryEx32(LPBYTE,BOOL32,INT32,INT32,UINT3
UINT32
WINAPI
MapVirtualKey32A
(
UINT32
,
UINT32
);
UINT32
WINAPI
MapVirtualKey32W
(
UINT32
,
UINT32
);
#define MapVirtualKey WINELIB_NAME_AW(MapVirtualKey)
UINT32
WINAPI
MapVirtualKeyEx32A
(
UINT32
,
UINT32
,
HKL32
);
#define MapVirtualKeyEx WINELIB_NAME_AW(MapVirtualKeyEx)
void
WINAPI
MapDialogRect32
(
HWND32
,
LPRECT32
);
#define MapDialogRect WINELIB_NAME(MapDialogRect)
void
WINAPI
MapWindowPoints32
(
HWND32
,
HWND32
,
LPPOINT32
,
UINT32
);
...
...
relay32/user32.spec
View file @
592c910b
...
...
@@ -385,7 +385,7 @@ init MAIN_UserInit
381 stub MBToWCSEx
382 stdcall MapDialogRect(long ptr) MapDialogRect32
383 stdcall MapVirtualKeyA(long long) MapVirtualKey32A
384 st
ub MapVirtualKeyEx
A
384 st
dcall MapVirtualKeyExA(long long long) MapVirtualKeyEx32
A
385 stdcall MapVirtualKeyW(long long) MapVirtualKey32A
386 stdcall MapWindowPoints(long long ptr long) MapWindowPoints32
387 stub MenuItemFromPoint
...
...
windows/input.c
View file @
592c910b
...
...
@@ -762,6 +762,16 @@ UINT32 WINAPI MapVirtualKey32W(UINT32 code, UINT32 maptype)
return
MapVirtualKey16
(
code
,
maptype
);
}
/******************************************************************************
* MapVirtualKeyEx32A (USER32.384)
*/
UINT32
WINAPI
MapVirtualKeyEx32A
(
UINT32
code
,
UINT32
maptype
,
HKL32
hkl
)
{
if
(
hkl
)
FIXME
(
keyboard
,
"(%d,%d,0x%08lx), hkl unhandled!
\n
"
,
code
,
maptype
,(
DWORD
)
hkl
);
return
MapVirtualKey16
(
code
,
maptype
);
}
/****************************************************************************
* GetKBCodePage32 (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