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
8d09d5c8
Commit
8d09d5c8
authored
May 06, 2008
by
John Klehm
Committed by
Alexandre Julliard
May 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Wintab packet serial numbers are passed via WPARAM.
parent
11a0e453
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
wintab.c
dlls/winex11.drv/wintab.c
+2
-2
No files found.
dlls/winex11.drv/wintab.c
View file @
8d09d5c8
...
...
@@ -834,7 +834,7 @@ static void motion_event( HWND hwnd, XEvent *event )
*
(
gMsgPacket
.
pkStatus
&
TPS_INVERT
?-
1
:
1
));
gMsgPacket
.
pkNormalPressure
=
motion
->
axis_data
[
2
];
gMsgPacket
.
pkButtons
=
get_button_state
(
curnum
);
SendMessageW
(
hwndTabletDefault
,
WT_PACKET
,
0
,(
LPARAM
)
hwnd
);
SendMessageW
(
hwndTabletDefault
,
WT_PACKET
,
gMsgPacket
.
pkSerialNumber
,(
LPARAM
)
hwnd
);
}
static
void
button_event
(
HWND
hwnd
,
XEvent
*
event
)
...
...
@@ -863,7 +863,7 @@ static void button_event( HWND hwnd, XEvent *event )
*
(
gMsgPacket
.
pkStatus
&
TPS_INVERT
?-
1
:
1
));
gMsgPacket
.
pkNormalPressure
=
button
->
axis_data
[
2
];
gMsgPacket
.
pkButtons
=
get_button_state
(
curnum
);
SendMessageW
(
hwndTabletDefault
,
WT_PACKET
,
0
,(
LPARAM
)
hwnd
);
SendMessageW
(
hwndTabletDefault
,
WT_PACKET
,
gMsgPacket
.
pkSerialNumber
,(
LPARAM
)
hwnd
);
}
static
void
key_event
(
HWND
hwnd
,
XEvent
*
event
)
...
...
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