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
5ad6ef53
Commit
5ad6ef53
authored
Sep 04, 2008
by
Jeff Latimer
Committed by
Alexandre Julliard
Sep 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: DdeConnect causes 2 XTYP_CONNECT_CONFIRM messages to flow. Delete one.
parent
4c3e55dd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
dde_client.c
dlls/user32/dde_client.c
+0
-2
dde.c
dlls/user32/tests/dde.c
+1
-2
No files found.
dlls/user32/dde_client.c
View file @
5ad6ef53
...
...
@@ -1331,8 +1331,6 @@ static LRESULT CALLBACK WDML_ClientProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPA
pConv
->
wStatus
|=
ST_ISLOCAL
;
}
WDML_BroadcastDDEWindows
(
WDML_szEventClass
,
WM_WDML_CONNECT_CONFIRM
,
(
WPARAM
)
hwnd
,
wParam
);
GlobalDeleteAtom
(
uiLo
);
GlobalDeleteAtom
(
uiHi
);
...
...
dlls/user32/tests/dde.c
View file @
5ad6ef53
...
...
@@ -2170,7 +2170,7 @@ static HDDEDATA CALLBACK server_end_to_end_callback(UINT uType, UINT uFmt, HCONV
}
case
XTYP_CONNECT_CONFIRM
:
{
ok
(
msg_index
==
3
||
msg_index
==
4
||
msg_index
==
8
,
"Expected 3 or 8, got %d
\n
"
,
msg_index
);
ok
(
msg_index
==
3
||
msg_index
==
8
,
"Expected 3 or 8, got %d
\n
"
,
msg_index
);
conversation
=
hconv
;
return
(
HDDEDATA
)
TRUE
;
}
...
...
@@ -2178,7 +2178,6 @@ static HDDEDATA CALLBACK server_end_to_end_callback(UINT uType, UINT uFmt, HCONV
{
BYTE
*
buffer
=
NULL
;
todo_wine
ok
(
msg_index
==
4
||
msg_index
==
9
,
"Expected 4 or 9, got %d
\n
"
,
msg_index
);
ok
(
uFmt
==
0
,
"Expected 0, got %d
\n
"
,
uFmt
);
ok
(
hconv
==
conversation
,
"Expected conversation handle, got %p, msg_index=%d
\n
"
,
...
...
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