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
b8b0b7fa
Commit
b8b0b7fa
authored
Oct 27, 2008
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 28, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineconsole: Don't ignore extended keys.
parent
de267347
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
18 deletions
+15
-18
user.c
programs/wineconsole/user.c
+15
-18
No files found.
programs/wineconsole/user.c
View file @
b8b0b7fa
...
...
@@ -1035,26 +1035,23 @@ static void WCUSER_GenerateKeyInputRecord(struct inner_data* data, BOOL down,
if
(
lParam
&
(
1L
<<
24
))
ir
.
Event
.
KeyEvent
.
dwControlKeyState
|=
ENHANCED_KEY
;
if
(
sys
)
ir
.
Event
.
KeyEvent
.
dwControlKeyState
|=
LEFT_ALT_PRESSED
;
/* FIXME: gotta choose one */
if
(
!
(
ir
.
Event
.
KeyEvent
.
dwControlKeyState
&
ENHANCED_KEY
)
)
if
(
down
)
{
if
(
down
)
{
switch
(
ToUnicode
(
wParam
,
HIWORD
(
lParam
),
keyState
,
buf
,
2
,
0
))
{
case
2
:
/* FIXME... should generate two events... */
/* fall thru */
case
1
:
last
=
buf
[
0
];
break
;
default:
last
=
0
;
break
;
}
}
ir
.
Event
.
KeyEvent
.
uChar
.
UnicodeChar
=
last
;
/* FIXME: HACKY... and buggy because it should be a stack, not a single value */
if
(
!
down
)
last
=
0
;
switch
(
ToUnicode
(
wParam
,
HIWORD
(
lParam
),
keyState
,
buf
,
2
,
0
))
{
case
2
:
/* FIXME... should generate two events... */
/* fall thru */
case
1
:
last
=
buf
[
0
];
break
;
default:
last
=
0
;
break
;
}
}
ir
.
Event
.
KeyEvent
.
uChar
.
UnicodeChar
=
last
;
/* FIXME: HACKY... and buggy because it should be a stack, not a single value */
if
(
!
down
)
last
=
0
;
WriteConsoleInput
(
data
->
hConIn
,
&
ir
,
1
,
&
n
);
}
...
...
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