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
12e3c494
Commit
12e3c494
authored
Jun 13, 2022
by
Zebediah Figura
Committed by
Alexandre Julliard
Jun 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Correctly fill the RAWINPUT structure on WoW64.
This changes the offset of the wParam field.
parent
ac5f0645
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
rawinput.c
dlls/user32/rawinput.c
+10
-2
No files found.
dlls/user32/rawinput.c
View file @
12e3c494
...
...
@@ -646,12 +646,20 @@ UINT WINAPI GetRawInputData(HRAWINPUT rawinput, UINT command, void *data, UINT *
}
#ifdef _WIN64
typedef
RAWINPUTHEADER
RAWINPUTHEADER64
;
typedef
RAWINPUT
RAWINPUT64
;
#else
typedef
struct
{
RAWINPUTHEADER
header
;
char
pad
[
8
];
DWORD
dwType
;
DWORD
dwSize
;
ULONGLONG
hDevice
;
ULONGLONG
wParam
;
}
RAWINPUTHEADER64
;
typedef
struct
{
RAWINPUTHEADER64
header
;
union
{
RAWMOUSE
mouse
;
RAWKEYBOARD
keyboard
;
...
...
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