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
9079109a
Commit
9079109a
authored
Feb 13, 2010
by
Jörg Höhle
Committed by
Alexandre Julliard
Mar 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Log keycode decimal <-> hex for keysym & MS vkey and scancode.
parent
83c272a2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
33 deletions
+38
-33
input.c
dlls/user32/input.c
+3
-3
message.c
dlls/user32/message.c
+1
-1
keyboard.c
dlls/winex11.drv/keyboard.c
+34
-29
No files found.
dlls/user32/input.c
View file @
9079109a
...
...
@@ -134,7 +134,7 @@ UINT WINAPI SendInput( UINT count, LPINPUT inputs, int size )
break
;
case
INPUT_KEYBOARD
:
TRACE
(
"keyboard: vk %
x
, scan %x, flags %x, time %u, info %lx
\n
"
,
TRACE
(
"keyboard: vk %
X
, scan %x, flags %x, time %u, info %lx
\n
"
,
inputs
[
i
].
u
.
ki
.
wVk
,
inputs
[
i
].
u
.
ki
.
wScan
,
inputs
[
i
].
u
.
ki
.
dwFlags
,
inputs
[
i
].
u
.
ki
.
time
,
inputs
[
i
].
u
.
ki
.
dwExtraInfo
);
break
;
...
...
@@ -657,7 +657,7 @@ UINT WINAPI MapVirtualKeyExA(UINT code, UINT maptype, HKL hkl)
*/
UINT
WINAPI
MapVirtualKeyExW
(
UINT
code
,
UINT
maptype
,
HKL
hkl
)
{
TRACE_
(
keyboard
)(
"(%
d
, %d, %p)
\n
"
,
code
,
maptype
,
hkl
);
TRACE_
(
keyboard
)(
"(%
X
, %d, %p)
\n
"
,
code
,
maptype
,
hkl
);
return
USER_Driver
->
pMapVirtualKeyEx
(
code
,
maptype
,
hkl
);
}
...
...
@@ -869,7 +869,7 @@ UINT WINAPI GetKeyboardLayoutList(INT nBuff, HKL *layouts)
BOOL
WINAPI
RegisterHotKey
(
HWND
hwnd
,
INT
id
,
UINT
modifiers
,
UINT
vk
)
{
static
int
once
;
if
(
!
once
++
)
FIXME_
(
keyboard
)(
"(%p,%d,0x%08x,%
d
): stub
\n
"
,
hwnd
,
id
,
modifiers
,
vk
);
if
(
!
once
++
)
FIXME_
(
keyboard
)(
"(%p,%d,0x%08x,%
X
): stub
\n
"
,
hwnd
,
id
,
modifiers
,
vk
);
return
TRUE
;
}
...
...
dlls/user32/message.c
View file @
9079109a
...
...
@@ -2998,7 +2998,7 @@ BOOL WINAPI TranslateMessage( const MSG *msg )
if
(
msg
->
message
<
WM_KEYFIRST
||
msg
->
message
>
WM_KEYLAST
)
return
FALSE
;
if
(
msg
->
message
!=
WM_KEYDOWN
&&
msg
->
message
!=
WM_SYSKEYDOWN
)
return
TRUE
;
TRACE_
(
key
)(
"Translating key %s (%04l
x
), scancode %04x
\n
"
,
TRACE_
(
key
)(
"Translating key %s (%04l
X
), scancode %04x
\n
"
,
SPY_GetVKeyName
(
msg
->
wParam
),
msg
->
wParam
,
HIWORD
(
msg
->
lParam
));
switch
(
msg
->
wParam
)
...
...
dlls/winex11.drv/keyboard.c
View file @
9079109a
This diff is collapsed.
Click to expand it.
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