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
7265e892
Commit
7265e892
authored
Dec 16, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Set the idle event when retrieving a timer message.
parent
92e704ed
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
msg.c
dlls/user32/tests/msg.c
+1
-1
queue.c
server/queue.c
+2
-0
No files found.
dlls/user32/tests/msg.c
View file @
7265e892
...
...
@@ -12038,7 +12038,7 @@ static const struct
{
WAIT_TIMEOUT
,
WAIT_TIMEOUT
,
FALSE
},
{
0
,
0
,
FALSE
},
{
0
,
0
,
FALSE
},
/* 10 */
{
0
,
0
,
TRUE
},
/* 10 */
{
0
,
0
,
FALSE
},
{
0
,
0
,
FALSE
},
{
0
,
WAIT_TIMEOUT
,
FALSE
},
{
0
,
0
,
FALSE
},
...
...
server/queue.c
View file @
7265e892
...
...
@@ -1814,6 +1814,8 @@ DECL_HANDLER(get_message)
reply
->
wparam
=
timer
->
id
;
reply
->
lparam
=
timer
->
lparam
;
reply
->
time
=
get_tick_count
();
if
(
!
(
req
->
flags
&
PM_NOYIELD
)
&&
current
->
process
->
idle_event
)
set_event
(
current
->
process
->
idle_event
);
return
;
}
...
...
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