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
6a0e7116
Commit
6a0e7116
authored
Feb 21, 2006
by
Vitaly Budovski
Committed by
Alexandre Julliard
Feb 28, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput: Return an error if both DISCL_EXCLUSIVE and DISCL_BACKGROUND are set.
parent
63585380
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
mouse.c
dlls/dinput/mouse.c
+4
-0
No files found.
dlls/dinput/mouse.c
View file @
6a0e7116
...
@@ -368,6 +368,10 @@ static HRESULT WINAPI SysMouseAImpl_SetCooperativeLevel(
...
@@ -368,6 +368,10 @@ static HRESULT WINAPI SysMouseAImpl_SetCooperativeLevel(
_dump_cooperativelevel_DI
(
dwflags
);
_dump_cooperativelevel_DI
(
dwflags
);
}
}
if
(
dwflags
&
DISCL_EXCLUSIVE
&&
dwflags
&
DISCL_BACKGROUND
)
{
return
DIERR_UNSUPPORTED
;
}
/* Store the window which asks for the mouse */
/* Store the window which asks for the mouse */
if
(
!
hwnd
)
if
(
!
hwnd
)
hwnd
=
GetDesktopWindow
();
hwnd
=
GetDesktopWindow
();
...
...
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