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
a8c72b76
Commit
a8c72b76
authored
Mar 12, 2007
by
Huw Davies
Committed by
Alexandre Julliard
Mar 13, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Only retrieve posted and paint messages in an STA message loop.
parent
6fcff278
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
compobj.c
dlls/ole32/compobj.c
+1
-1
No files found.
dlls/ole32/compobj.c
View file @
a8c72b76
...
...
@@ -3128,7 +3128,7 @@ static BOOL COM_PeekMessage(struct apartment *apt, MSG *msg)
/* first try to retrieve messages for incoming COM calls to the apartment window */
return
PeekMessageW
(
msg
,
apt
->
win
,
WM_USER
,
WM_APP
-
1
,
PM_REMOVE
|
PM_NOYIELD
)
||
/* next retrieve other messages necessary for the app to remain responsive */
PeekMessageW
(
msg
,
NULL
,
0
,
WM_USER
-
1
,
PM_REMOVE
|
PM_NOYIELD
);
PeekMessageW
(
msg
,
NULL
,
0
,
0
,
PM_QS_PAINT
|
PM_QS_POSTMESSAGE
|
PM_REMOVE
|
PM_NOYIELD
);
}
/***********************************************************************
...
...
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