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
7f9fb63a
Commit
7f9fb63a
authored
Feb 12, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Feb 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput: Split dinput_unacquire_window_devices helper.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=54431
parent
cde58336
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
21 deletions
+31
-21
dinput_main.c
dlls/dinput/dinput_main.c
+31
-21
No files found.
dlls/dinput/dinput_main.c
View file @
7f9fb63a
...
...
@@ -163,40 +163,50 @@ static void dinput_unacquire_window_devices( HWND window )
LIST_FOR_EACH_ENTRY_SAFE
(
impl
,
next
,
&
acquired_device_list
,
struct
dinput_device
,
entry
)
{
if
(
!
window
||
window
==
impl
->
win
)
{
TRACE
(
"%p window is not foreground - unacquiring %p
\n
"
,
impl
->
win
,
impl
);
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
}
if
(
window
!=
impl
->
win
)
continue
;
TRACE
(
"%p window is not foreground - unacquiring %p
\n
"
,
impl
->
win
,
impl
);
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
}
LIST_FOR_EACH_ENTRY_SAFE
(
impl
,
next
,
&
acquired_mouse_list
,
struct
dinput_device
,
entry
)
{
if
(
!
window
||
window
==
impl
->
win
)
{
TRACE
(
"%p window is not foreground - unacquiring %p
\n
"
,
impl
->
win
,
impl
);
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
}
if
(
window
!=
impl
->
win
)
continue
;
TRACE
(
"%p window is not foreground - unacquiring %p
\n
"
,
impl
->
win
,
impl
);
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
}
LIST_FOR_EACH_ENTRY_SAFE
(
impl
,
next
,
&
acquired_rawmouse_list
,
struct
dinput_device
,
entry
)
{
if
(
!
window
||
window
==
impl
->
win
)
{
TRACE
(
"%p window is not foreground - unacquiring %p
\n
"
,
impl
->
win
,
impl
);
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
}
if
(
window
!=
impl
->
win
)
continue
;
TRACE
(
"%p window is not foreground - unacquiring %p
\n
"
,
impl
->
win
,
impl
);
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
}
LIST_FOR_EACH_ENTRY_SAFE
(
impl
,
next
,
&
acquired_keyboard_list
,
struct
dinput_device
,
entry
)
{
if
(
!
window
||
window
==
impl
->
win
)
{
TRACE
(
"%p window is not foreground - unacquiring %p
\n
"
,
impl
->
win
,
impl
);
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
}
if
(
window
!=
impl
->
win
)
continue
;
TRACE
(
"%p window is not foreground - unacquiring %p
\n
"
,
impl
->
win
,
impl
);
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
}
LeaveCriticalSection
(
&
dinput_hook_crit
);
}
static
void
dinput_unacquire_devices
(
void
)
{
struct
dinput_device
*
impl
,
*
next
;
EnterCriticalSection
(
&
dinput_hook_crit
);
LIST_FOR_EACH_ENTRY_SAFE
(
impl
,
next
,
&
acquired_device_list
,
struct
dinput_device
,
entry
)
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
LIST_FOR_EACH_ENTRY_SAFE
(
impl
,
next
,
&
acquired_mouse_list
,
struct
dinput_device
,
entry
)
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
LIST_FOR_EACH_ENTRY_SAFE
(
impl
,
next
,
&
acquired_rawmouse_list
,
struct
dinput_device
,
entry
)
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
LIST_FOR_EACH_ENTRY_SAFE
(
impl
,
next
,
&
acquired_keyboard_list
,
struct
dinput_device
,
entry
)
dinput_device_internal_unacquire
(
&
impl
->
IDirectInputDevice8W_iface
,
STATUS_UNACQUIRED
);
LeaveCriticalSection
(
&
dinput_hook_crit
);
}
static
LRESULT
CALLBACK
callwndproc_proc
(
int
code
,
WPARAM
wparam
,
LPARAM
lparam
)
{
CWPSTRUCT
*
msg
=
(
CWPSTRUCT
*
)
lparam
;
...
...
@@ -390,7 +400,7 @@ static DWORD WINAPI dinput_thread_proc( void *params )
if
(
state
.
running
)
{
ERR
(
"Unexpected termination, ret %#lx
\n
"
,
ret
);
dinput_unacquire_
window_devices
(
0
);
dinput_unacquire_
devices
(
);
}
while
(
state
.
devices_count
--
)
dinput_device_internal_release
(
state
.
devices
[
state
.
devices_count
]
);
...
...
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