Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b49d541c
Commit
b49d541c
authored
May 15, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
May 20, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Process sent and DDE messages in CoWaitForMultipleHandles.
parent
c486e814
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
compobj.c
dlls/ole32/compobj.c
+3
-1
No files found.
dlls/ole32/compobj.c
View file @
b49d541c
...
...
@@ -56,6 +56,7 @@
#include "ole2.h"
#include "ole2ver.h"
#include "ctxtcall.h"
#include "dde.h"
#include "compobj_private.h"
...
...
@@ -3525,7 +3526,8 @@ 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
,
0
,
PM_QS_PAINT
|
PM_QS_POSTMESSAGE
|
PM_REMOVE
|
PM_NOYIELD
);
PeekMessageW
(
msg
,
NULL
,
WM_DDE_FIRST
,
WM_DDE_LAST
,
PM_REMOVE
|
PM_NOYIELD
)
||
PeekMessageW
(
msg
,
NULL
,
0
,
0
,
PM_QS_PAINT
|
PM_QS_SENDMESSAGE
|
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