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
da77b8a0
Commit
da77b8a0
authored
Feb 15, 2008
by
Marcus Meissner
Committed by
Alexandre Julliard
Feb 16, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput: Add debug output for IDirectInput8A::EnumDevicesBySemantics.
parent
9ce27fc7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
4 deletions
+15
-4
dinput_main.c
dlls/dinput/dinput_main.c
+15
-4
No files found.
dlls/dinput/dinput_main.c
View file @
da77b8a0
...
...
@@ -666,11 +666,22 @@ static HRESULT WINAPI IDirectInput8AImpl_EnumDevicesBySemantics(
LPVOID
pvRef
,
DWORD
dwFlags
)
{
IDirectInputImpl
*
This
=
impl_from_IDirectInput8A
(
iface
);
IDirectInputImpl
*
This
=
impl_from_IDirectInput8A
(
iface
);
FIXME
(
"(this=%p,%s,%p,%p,%p,%04x): stub
\n
"
,
This
,
ptszUserName
,
lpdiActionFormat
,
lpCallback
,
pvRef
,
dwFlags
);
return
0
;
FIXME
(
"(this=%p,%s,%p,%p,%p,%04x): stub
\n
"
,
This
,
ptszUserName
,
lpdiActionFormat
,
lpCallback
,
pvRef
,
dwFlags
);
#define X(x) if (dwFlags & x) FIXME("\tdwFlags |= "#x"\n");
X
(
DIEDBSFL_ATTACHEDONLY
)
X
(
DIEDBSFL_THISUSER
)
X
(
DIEDBSFL_FORCEFEEDBACK
)
X
(
DIEDBSFL_AVAILABLEDEVICES
)
X
(
DIEDBSFL_MULTIMICEKEYBOARDS
)
X
(
DIEDBSFL_NONGAMINGDEVICES
)
#undef X
_dump_diactionformatA
(
lpdiActionFormat
);
return
DI_OK
;
}
static
HRESULT
WINAPI
IDirectInput8WImpl_EnumDevicesBySemantics
(
...
...
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