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
dbad0ee6
Commit
dbad0ee6
authored
Oct 12, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Oct 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: The server should release data sent with WM_DDE_POKE.
parent
9f3f51ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
dde_client.c
dlls/user32/dde_client.c
+1
-1
dde.c
dlls/user32/tests/dde.c
+1
-5
No files found.
dlls/user32/dde_client.c
View file @
dbad0ee6
...
...
@@ -725,7 +725,7 @@ static WDML_XACT* WDML_ClientQueuePoke(WDML_CONV* pConv, LPVOID pData, DWORD cbD
if
(
ddePoke
)
{
memcpy
(
ddePoke
->
Value
,
pData
,
cbData
);
ddePoke
->
fRelease
=
FALSE
;
/* FIXME: app owned ? */
ddePoke
->
fRelease
=
TRUE
;
ddePoke
->
cfFormat
=
wFmt
;
GlobalUnlock
(
pXAct
->
hMem
);
}
...
...
dlls/user32/tests/dde.c
View file @
dbad0ee6
...
...
@@ -176,12 +176,8 @@ static LRESULT WINAPI dde_server_wndproc(HWND hwnd, UINT msg, WPARAM wparam, LPA
if
(
msg_index
==
7
)
todo_wine
{
ok
(
poke
->
unused
==
0
,
"Expected 0, got %d
\n
"
,
poke
->
unused
);
ok
(
poke
->
cfFormat
==
CF_TEXT
,
"Expected CF_TEXT, got %d
\n
"
,
poke
->
cfFormat
);
}
todo_wine
{
ok
(
poke
->
fRelease
==
TRUE
,
"Expected TRUE, got %d
\n
"
,
poke
->
fRelease
);
ok
(
poke
->
cfFormat
==
CF_TEXT
,
"Expected CF_TEXT, got %d
\n
"
,
poke
->
cfFormat
);
}
if
(
msg_index
==
5
)
...
...
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