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
746706b3
Commit
746706b3
authored
Apr 15, 1999
by
Huw D M Davies
Committed by
Alexandre Julliard
Apr 15, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
index == 3 corresponds to Alt-Gr + Shift.
parent
8065188d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
keyboard.c
windows/x11drv/keyboard.c
+3
-2
No files found.
windows/x11drv/keyboard.c
View file @
746706b3
...
...
@@ -872,7 +872,8 @@ WORD X11DRV_KEYBOARD_VkKeyScan(CHAR cChar)
WARN
(
keyboard
,
"Keysym %lx not found while parsing the keycode table
\n
"
,
keysym
);
break
;
case
0
:
break
;
case
1
:
highbyte
=
0x0100
;
break
;
case
2
:
highbyte
=
0X0600
;
break
;
case
2
:
highbyte
=
0x0600
;
break
;
case
3
:
highbyte
=
0x0700
;
break
;
default
:
ERR
(
keyboard
,
"index %d found by XKeycodeToKeysym. please report!
\n
"
,
index
);
}
/*
...
...
@@ -880,7 +881,7 @@ WORD X11DRV_KEYBOARD_VkKeyScan(CHAR cChar)
index : 1 adds 0x0100 (shift)
index : ? adds 0x0200 (ctrl)
index : 2 adds 0x0600 (ctrl+alt)
index :
? adds 0x0700 (ctrl+alt+shift (used?)
)
index :
3 adds 0x0700 (ctrl+alt+shift
)
*/
}
TRACE
(
keyboard
,
" ... returning %#.2x
\n
"
,
keyc2vkey
[
keycode
]
+
highbyte
);
...
...
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