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
3cca65e3
Commit
3cca65e3
authored
May 31, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Jun 12, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Add a clipping_cursor member to user_thread_info.
parent
89a7c05a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
input.c
dlls/win32u/input.c
+8
-1
ntuser_private.h
dlls/win32u/ntuser_private.h
+1
-0
No files found.
dlls/win32u/input.c
View file @
3cca65e3
...
...
@@ -404,6 +404,7 @@ static const KBDTABLES kbdus_tables =
.
fLocaleFlags
=
MAKELONG
(
0
,
KBD_VERSION
),
};
static
LONG
clipping_cursor
;
/* clipping thread counter */
LONG
global_key_state_counter
=
0
;
BOOL
grab_pointer
=
TRUE
;
...
...
@@ -2504,6 +2505,9 @@ BOOL process_wine_clipcursor( BOOL empty, BOOL reset )
TRACE
(
"empty %u, reset %u
\n
"
,
empty
,
reset
);
if
(
thread_info
->
clipping_cursor
)
InterlockedDecrement
(
&
clipping_cursor
);
thread_info
->
clipping_cursor
=
FALSE
;
if
(
reset
)
{
thread_info
->
clipping_reset
=
NtGetTickCount
();
...
...
@@ -2514,7 +2518,10 @@ BOOL process_wine_clipcursor( BOOL empty, BOOL reset )
if
(
empty
)
return
user_driver
->
pClipCursor
(
NULL
,
reset
);
get_clip_cursor
(
&
rect
);
return
user_driver
->
pClipCursor
(
&
rect
,
FALSE
);
if
(
!
user_driver
->
pClipCursor
(
&
rect
,
FALSE
))
return
FALSE
;
InterlockedIncrement
(
&
clipping_cursor
);
thread_info
->
clipping_cursor
=
TRUE
;
return
TRUE
;
}
/***********************************************************************
...
...
dlls/win32u/ntuser_private.h
View file @
3cca65e3
...
...
@@ -130,6 +130,7 @@ struct user_thread_info
UINT
kbd_layout_id
;
/* Current keyboard layout ID */
struct
rawinput_thread_data
*
rawinput
;
/* RawInput thread local data / buffer */
UINT
spy_indent
;
/* Current spy indent */
BOOL
clipping_cursor
;
/* thread is currently clipping */
DWORD
clipping_reset
;
/* time when clipping was last reset */
};
...
...
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