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
e1d6e3b2
Commit
e1d6e3b2
authored
Nov 29, 2009
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Nov 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput: Fix definitions to match PSDK.
parent
75c71b4b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
dinput_main.c
dlls/dinput/dinput_main.c
+1
-1
dinput.h
include/dinput.h
+2
-2
No files found.
dlls/dinput/dinput_main.c
View file @
e1d6e3b2
...
...
@@ -224,7 +224,7 @@ void _dump_diactionformatA(LPDIACTIONFORMATA lpdiActionFormat) {
for
(
i
=
0
;
i
<
lpdiActionFormat
->
dwNumActions
;
i
++
)
{
FIXME
(
"diaf.rgoAction[%u]:
\n
"
,
i
);
FIXME
(
"
\t
uAppData=%lx
\n
"
,
lpdiActionFormat
->
rgoAction
[
i
].
uAppData
);
FIXME
(
"
\t
dwSemantic
s=%x
\n
"
,
lpdiActionFormat
->
rgoAction
[
i
].
dwSemantics
);
FIXME
(
"
\t
dwSemantic
=%x
\n
"
,
lpdiActionFormat
->
rgoAction
[
i
].
dwSemantic
);
FIXME
(
"
\t
dwFlags=%x
\n
"
,
lpdiActionFormat
->
rgoAction
[
i
].
dwFlags
);
FIXME
(
"
\t
szActionName=%s
\n
"
,
debugstr_a
(
lpdiActionFormat
->
rgoAction
[
i
].
u
.
lptszActionName
));
FIXME
(
"
\t
guidInstance=%s
\n
"
,
debugstr_guid
(
&
lpdiActionFormat
->
rgoAction
[
i
].
guidInstance
));
...
...
include/dinput.h
View file @
e1d6e3b2
...
...
@@ -1106,7 +1106,7 @@ typedef BOOL (CALLBACK *LPDIENUMEFFECTSINFILECALLBACK)(LPCDIFILEEFFECT , LPVOID)
/* DInput 8 structures and types */
typedef
struct
_DIACTIONA
{
UINT_PTR
uAppData
;
DWORD
dwSemantic
s
;
DWORD
dwSemantic
;
DWORD
dwFlags
;
union
{
LPCSTR
lptszActionName
;
...
...
@@ -1120,7 +1120,7 @@ typedef const DIACTIONA *LPCDIACTIONA;
typedef
struct
_DIACTIONW
{
UINT_PTR
uAppData
;
DWORD
dwSemantic
s
;
DWORD
dwSemantic
;
DWORD
dwFlags
;
union
{
LPCWSTR
lptszActionName
;
...
...
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