2 * Unit tests for DDE functions
4 * Copyright (c) 2004 Dmitry Timoshkov
5 * Copyright (c) 2007 James Hawkins
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
34 #include "wine/test.h"
36 static const WCHAR TEST_DDE_SERVICE
[] = {'T','e','s','t','D','D','E','S','e','r','v','i','c','e',0};
38 static char exec_cmdA
[] = "ANSI dde command";
39 static WCHAR exec_cmdAW
[] = {'A','N','S','I',' ','d','d','e',' ','c','o','m','m','a','n','d',0};
40 static WCHAR exec_cmdW
[] = {'u','n','i','c','o','d','e',' ','d','d','e',' ','c','o','m','m','a','n','d',0};
41 static char exec_cmdWA
[] = "unicode dde command";
43 static WNDPROC old_dde_client_wndproc
;
45 static const DWORD default_timeout
= 200;
47 static void flush_events(void)
50 int diff
= default_timeout
;
52 DWORD time
= GetTickCount() + diff
;
56 if (MsgWaitForMultipleObjects( 0, NULL
, FALSE
, min_timeout
, QS_ALLINPUT
) == WAIT_TIMEOUT
) break;
57 while (PeekMessage( &msg
, 0, 0, 0, PM_REMOVE
)) DispatchMessage( &msg
);
58 diff
= time
- GetTickCount();
63 static void create_dde_window(HWND
*hwnd
, LPCSTR name
, WNDPROC wndproc
)
67 memset(&wcA
, 0, sizeof(wcA
));
68 wcA
.lpfnWndProc
= wndproc
;
69 wcA
.lpszClassName
= name
;
70 wcA
.hInstance
= GetModuleHandleA(0);
71 assert(RegisterClassA(&wcA
));
73 *hwnd
= CreateWindowExA(0, name
, NULL
, WS_POPUP
,
74 500, 500, CW_USEDEFAULT
, CW_USEDEFAULT
,
75 GetDesktopWindow(), 0, GetModuleHandleA(0), NULL
);
79 static void destroy_dde_window(HWND
*hwnd
, LPCSTR name
)
82 UnregisterClass(name
, GetModuleHandleA(0));
85 static LRESULT WINAPI
dde_server_wndproc(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
88 char str
[MAX_PATH
], *ptr
;
94 static int msg_index
= 0;
95 static HWND client
= 0;
96 static BOOL executed
= FALSE
;
98 if (msg
< WM_DDE_FIRST
|| msg
> WM_DDE_LAST
)
99 return DefWindowProcA(hwnd
, msg
, wparam
, lparam
);
105 case WM_DDE_INITIATE
:
107 client
= (HWND
)wparam
;
108 ok(msg_index
== 1, "Expected 1, got %d\n", msg_index
);
110 GlobalGetAtomNameA(LOWORD(lparam
), str
, MAX_PATH
);
111 ok(!lstrcmpA(str
, "TestDDEService"), "Expected TestDDEService, got %s\n", str
);
113 GlobalGetAtomNameA(HIWORD(lparam
), str
, MAX_PATH
);
114 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
116 SendMessageA(client
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
123 ok((msg_index
>= 2 && msg_index
<= 4) ||
124 (msg_index
>= 7 && msg_index
<= 8),
125 "Expected 2, 3, 4, 7 or 8, got %d\n", msg_index
);
126 ok(wparam
== (WPARAM
)client
, "Expected client hwnd, got %08lx\n", wparam
);
127 ok(LOWORD(lparam
) == CF_TEXT
, "Expected CF_TEXT, got %d\n", LOWORD(lparam
));
129 GlobalGetAtomNameA(HIWORD(lparam
), str
, MAX_PATH
);
131 ok(!lstrcmpA(str
, "request"), "Expected request, got %s\n", str
);
133 ok(!lstrcmpA(str
, "executed"), "Expected executed, got %s\n", str
);
138 lstrcpyA(str
, "command executed\r\n");
140 lstrcpyA(str
, "command not executed\r\n");
143 lstrcpyA(str
, "requested data\r\n");
145 size
= sizeof(DDEDATA
) + lstrlenA(str
) + 1;
146 hglobal
= GlobalAlloc(GMEM_MOVEABLE
, size
);
147 ok(hglobal
!= NULL
, "Expected non-NULL hglobal\n");
149 data
= GlobalLock(hglobal
);
150 ZeroMemory(data
, size
);
152 /* setting fResponse to FALSE at this point destroys
153 * the internal messaging state of native dde
155 data
->fResponse
= TRUE
;
158 data
->fRelease
= TRUE
;
159 else if (msg_index
== 3)
160 data
->fAckReq
= TRUE
;
162 data
->cfFormat
= CF_TEXT
;
163 lstrcpyA((LPSTR
)data
->Value
, str
);
164 GlobalUnlock(hglobal
);
166 lparam
= PackDDElParam(WM_DDE_DATA
, (UINT_PTR
)hglobal
, HIWORD(lparam
));
167 PostMessageA(client
, WM_DDE_DATA
, (WPARAM
)hwnd
, lparam
);
174 ok(msg_index
== 5 || msg_index
== 6, "Expected 5 or 6, got %d\n", msg_index
);
175 ok(wparam
== (WPARAM
)client
, "Expected client hwnd, got %08lx\n", wparam
);
177 UnpackDDElParam(WM_DDE_POKE
, lparam
, &lo
, &hi
);
179 GlobalGetAtomNameA(hi
, str
, MAX_PATH
);
180 ok(!lstrcmpA(str
, "poker"), "Expected poker, got %s\n", str
);
182 poke
= GlobalLock((HGLOBAL
)lo
);
183 ok(poke
!= NULL
, "Expected non-NULL poke\n");
184 ok(poke
->fReserved
== 0, "Expected 0, got %d\n", poke
->fReserved
);
185 ok(poke
->unused
== 0, "Expected 0, got %d\n", poke
->unused
);
186 ok(poke
->fRelease
== TRUE
, "Expected TRUE, got %d\n", poke
->fRelease
);
187 ok(poke
->cfFormat
== CF_TEXT
, "Expected CF_TEXT, got %d\n", poke
->cfFormat
);
191 size
= GlobalSize((HGLOBAL
)lo
);
192 ok(size
== 4 || broken(size
== 32), /* sizes are rounded up on win9x */ "got %d\n", size
);
195 ok(!lstrcmpA((LPSTR
)poke
->Value
, "poke data\r\n"),
196 "Expected 'poke data\\r\\n', got %s\n", poke
->Value
);
198 GlobalUnlock((HGLOBAL
)lo
);
200 lparam
= PackDDElParam(WM_DDE_ACK
, DDE_FACK
, hi
);
201 PostMessageA(client
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
208 ok(msg_index
== 7, "Expected 7, got %d\n", msg_index
);
209 ok(wparam
== (WPARAM
)client
, "Expected client hwnd, got %08lx\n", wparam
);
211 ptr
= GlobalLock((HGLOBAL
)lparam
);
212 ok(!lstrcmpA(ptr
, "[Command(Var)]"), "Expected [Command(Var)], got %s\n", ptr
);
213 GlobalUnlock((HGLOBAL
)lparam
);
217 lparam
= ReuseDDElParam(lparam
, WM_DDE_EXECUTE
, WM_DDE_ACK
, DDE_FACK
, lparam
);
218 PostMessageA(client
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
223 case WM_DDE_TERMINATE
:
225 ok(msg_index
== 9, "Expected 9, got %d\n", msg_index
);
226 ok(wparam
== (WPARAM
)client
, "Expected client hwnd, got %08lx\n", wparam
);
227 ok(lparam
== 0, "Expected 0, got %08lx\n", lparam
);
229 PostMessageA(client
, WM_DDE_TERMINATE
, (WPARAM
)hwnd
, 0);
234 case WM_DDE_ACK
: /* happens on win9x when fAckReq is TRUE, ignore it */
235 ok(msg_index
== 4, "Expected 4, got %d\n", msg_index
);
240 ok(FALSE
, "Unhandled msg: %08x\n", msg
);
243 return DefWindowProcA(hwnd
, msg
, wparam
, lparam
);
246 static void test_msg_server(HANDLE hproc
, HANDLE hthread
)
252 create_dde_window(&hwnd
, "dde_server", dde_server_wndproc
);
253 ResumeThread( hthread
);
255 while (MsgWaitForMultipleObjects( 1, &hproc
, FALSE
, INFINITE
, QS_ALLINPUT
) != 0)
257 while (PeekMessage(&msg
, 0, 0, 0, PM_REMOVE
)) DispatchMessageA(&msg
);
260 destroy_dde_window(&hwnd
, "dde_server");
261 GetExitCodeProcess( hproc
, &res
);
262 ok( !res
, "client failed with %u error(s)\n", res
);
265 static HDDEDATA CALLBACK
client_ddeml_callback(UINT uType
, UINT uFmt
, HCONV hconv
,
266 HSZ hsz1
, HSZ hsz2
, HDDEDATA hdata
,
267 ULONG_PTR dwData1
, ULONG_PTR dwData2
)
269 ok(FALSE
, "Unhandled msg: %08x\n", uType
);
273 static void test_ddeml_client(void)
280 HSZ server
, topic
, item
;
285 ret
= DdeInitializeA(&client_pid
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
286 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
288 /* FIXME: make these atoms global and check them in the server */
290 server
= DdeCreateStringHandleA(client_pid
, "TestDDEService", CP_WINANSI
);
291 topic
= DdeCreateStringHandleA(client_pid
, "TestDDETopic", CP_WINANSI
);
293 DdeGetLastError(client_pid
);
294 conversation
= DdeConnect(client_pid
, server
, topic
, NULL
);
295 ok(conversation
!= NULL
, "Expected non-NULL conversation\n");
296 ret
= DdeGetLastError(client_pid
);
297 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
299 DdeFreeStringHandle(client_pid
, server
);
301 item
= DdeCreateStringHandleA(client_pid
, "request", CP_WINANSI
);
303 /* XTYP_REQUEST, fRelease = TRUE */
305 DdeGetLastError(client_pid
);
306 hdata
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
307 ret
= DdeGetLastError(client_pid
);
308 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
309 ok(res
== DDE_FNOTPROCESSED
|| broken(res
== 0xdeadbeef), /* win9x */
310 "Expected DDE_FNOTPROCESSED, got %08x\n", res
);
311 ok( hdata
!= NULL
, "hdata is NULL\n" );
314 str
= (LPSTR
)DdeAccessData(hdata
, &size
);
315 ok(!lstrcmpA(str
, "requested data\r\n"), "Expected 'requested data\\r\\n', got %s\n", str
);
316 ok(size
== 19 || broken(size
== 28), /* sizes are rounded up on win9x */
317 "Expected 19, got %d\n", size
);
319 ret
= DdeUnaccessData(hdata
);
320 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
323 /* XTYP_REQUEST, fAckReq = TRUE */
325 DdeGetLastError(client_pid
);
326 hdata
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
327 ret
= DdeGetLastError(client_pid
);
328 ok(res
== DDE_FNOTPROCESSED
|| broken(res
== 0xdeadbeef), /* win9x */
329 "Expected DDE_FNOTPROCESSED, got %x\n", res
);
331 ok(ret
== DMLERR_MEMORY_ERROR
|| broken(ret
== 0), /* win9x */
332 "Expected DMLERR_MEMORY_ERROR, got %d\n", ret
);
333 ok( hdata
!= NULL
, "hdata is NULL\n" );
336 str
= (LPSTR
)DdeAccessData(hdata
, &size
);
337 ok(!lstrcmpA(str
, "requested data\r\n"), "Expected 'requested data\\r\\n', got %s\n", str
);
338 ok(size
== 19 || broken(size
== 28), /* sizes are rounded up on win9x */
339 "Expected 19, got %d\n", size
);
341 ret
= DdeUnaccessData(hdata
);
342 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
345 /* XTYP_REQUEST, all params normal */
347 DdeGetLastError(client_pid
);
348 hdata
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
349 ret
= DdeGetLastError(client_pid
);
350 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
351 ok(res
== DDE_FNOTPROCESSED
|| broken(res
== 0xdeadbeef), /* win9x */
352 "Expected DDE_FNOTPROCESSED, got %x\n", res
);
354 ok(FALSE
, "hdata is NULL\n");
357 str
= (LPSTR
)DdeAccessData(hdata
, &size
);
358 ok(!lstrcmpA(str
, "requested data\r\n"), "Expected 'requested data\\r\\n', got %s\n", str
);
359 ok(size
== 19 || broken(size
== 28), /* sizes are rounded up on win9x */
360 "Expected 19, got %d\n", size
);
362 ret
= DdeUnaccessData(hdata
);
363 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
366 /* XTYP_REQUEST, no item */
368 DdeGetLastError(client_pid
);
369 hdata
= DdeClientTransaction(NULL
, 0, conversation
, 0, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
370 ret
= DdeGetLastError(client_pid
);
371 ok(hdata
== NULL
, "Expected NULL hdata, got %p\n", hdata
);
372 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %08x\n", res
);
373 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
375 DdeFreeStringHandle(client_pid
, item
);
377 item
= DdeCreateStringHandleA(client_pid
, "poker", CP_WINANSI
);
379 lstrcpyA(buffer
, "poke data\r\n");
380 hdata
= DdeCreateDataHandle(client_pid
, (LPBYTE
)buffer
, lstrlenA(buffer
) + 1,
381 0, item
, CF_TEXT
, 0);
382 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
384 /* XTYP_POKE, no item */
386 DdeGetLastError(client_pid
);
387 op
= DdeClientTransaction((LPBYTE
)hdata
, -1, conversation
, 0, CF_TEXT
, XTYP_POKE
, default_timeout
, &res
);
388 ret
= DdeGetLastError(client_pid
);
389 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
390 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
391 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
393 /* XTYP_POKE, no data */
395 DdeGetLastError(client_pid
);
396 op
= DdeClientTransaction(NULL
, 0, conversation
, 0, CF_TEXT
, XTYP_POKE
, default_timeout
, &res
);
397 ret
= DdeGetLastError(client_pid
);
398 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
399 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
400 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
402 /* XTYP_POKE, wrong size */
404 DdeGetLastError(client_pid
);
405 op
= DdeClientTransaction((LPBYTE
)hdata
, 0, conversation
, item
, CF_TEXT
, XTYP_POKE
, default_timeout
, &res
);
406 ret
= DdeGetLastError(client_pid
);
407 ok(op
== (HDDEDATA
)TRUE
, "Expected TRUE, got %p\n", op
);
408 ok(res
== DDE_FACK
|| broken(res
== (0xdead0000 | DDE_FACK
)), /* win9x */
409 "Expected DDE_FACK, got %x\n", res
);
410 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
412 /* XTYP_POKE, correct params */
414 DdeGetLastError(client_pid
);
415 op
= DdeClientTransaction((LPBYTE
)hdata
, -1, conversation
, item
, CF_TEXT
, XTYP_POKE
, default_timeout
, &res
);
416 ret
= DdeGetLastError(client_pid
);
417 ok(op
== (HDDEDATA
)TRUE
, "Expected TRUE, got %p\n", op
);
418 ok(res
== DDE_FACK
|| broken(res
== (0xdead0000 | DDE_FACK
)), /* win9x */
419 "Expected DDE_FACK, got %x\n", res
);
420 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
422 DdeFreeDataHandle(hdata
);
424 lstrcpyA(buffer
, "[Command(Var)]");
425 hdata
= DdeCreateDataHandle(client_pid
, (LPBYTE
)buffer
, lstrlenA(buffer
) + 1,
426 0, NULL
, CF_TEXT
, 0);
427 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
429 /* XTYP_EXECUTE, correct params */
431 DdeGetLastError(client_pid
);
432 op
= DdeClientTransaction((LPBYTE
)hdata
, -1, conversation
, NULL
, 0, XTYP_EXECUTE
, default_timeout
, &res
);
433 ret
= DdeGetLastError(client_pid
);
434 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
435 ok(op
== (HDDEDATA
)TRUE
, "Expected TRUE, got %p\n", op
);
436 ok(res
== DDE_FACK
|| broken(res
== (0xdead0000 | DDE_FACK
)), /* win9x */
437 "Expected DDE_FACK, got %x\n", res
);
439 /* XTYP_EXECUTE, no data */
441 DdeGetLastError(client_pid
);
442 op
= DdeClientTransaction(NULL
, 0, conversation
, NULL
, 0, XTYP_EXECUTE
, default_timeout
, &res
);
443 ret
= DdeGetLastError(client_pid
);
444 ok(op
== NULL
|| broken(op
== (HDDEDATA
)TRUE
), /* win9x */ "Expected NULL, got %p\n", op
);
447 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
448 ok(ret
== DMLERR_MEMORY_ERROR
, "Expected DMLERR_MEMORY_ERROR, got %d\n", ret
);
452 ok(res
== (0xdead0000 | DDE_FACK
), "Expected DDE_FACK, got %x\n", res
);
453 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
456 /* XTYP_EXECUTE, no data, -1 size */
458 DdeGetLastError(client_pid
);
459 op
= DdeClientTransaction(NULL
, -1, conversation
, NULL
, 0, XTYP_EXECUTE
, default_timeout
, &res
);
460 ret
= DdeGetLastError(client_pid
);
461 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
462 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
463 ok(ret
== DMLERR_INVALIDPARAMETER
|| broken(ret
== DMLERR_NO_ERROR
), /* win9x */
464 "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
466 DdeFreeStringHandle(client_pid
, topic
);
467 DdeFreeDataHandle(hdata
);
469 item
= DdeCreateStringHandleA(client_pid
, "executed", CP_WINANSI
);
471 /* verify the execute */
473 DdeGetLastError(client_pid
);
474 hdata
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
475 ret
= DdeGetLastError(client_pid
);
476 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
477 ok(res
== DDE_FNOTPROCESSED
|| broken(res
== (0xdead0000 | DDE_FNOTPROCESSED
)), /* win9x */
478 "Expected DDE_FNOTPROCESSED, got %d\n", res
);
480 ok(FALSE
, "hdata is NULL\n");
483 str
= (LPSTR
)DdeAccessData(hdata
, &size
);
484 ok(!lstrcmpA(str
, "command executed\r\n"), "Expected 'command executed\\r\\n', got %s\n", str
);
485 ok(size
== 21 || broken(size
== 28), /* sizes are rounded up on win9x */
486 "Expected 21, got %d\n", size
);
488 ret
= DdeUnaccessData(hdata
);
489 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
492 /* invalid transactions */
494 DdeGetLastError(client_pid
);
495 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_ADVREQ
, default_timeout
, &res
);
496 ret
= DdeGetLastError(client_pid
);
497 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
498 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
499 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
502 DdeGetLastError(client_pid
);
503 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_CONNECT
, default_timeout
, &res
);
504 ret
= DdeGetLastError(client_pid
);
505 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
506 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
507 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
510 DdeGetLastError(client_pid
);
511 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_CONNECT_CONFIRM
, default_timeout
, &res
);
512 ret
= DdeGetLastError(client_pid
);
513 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
514 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
515 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
518 DdeGetLastError(client_pid
);
519 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_DISCONNECT
, default_timeout
, &res
);
520 ret
= DdeGetLastError(client_pid
);
521 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
522 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
523 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
526 DdeGetLastError(client_pid
);
527 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_ERROR
, default_timeout
, &res
);
528 ret
= DdeGetLastError(client_pid
);
529 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
530 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
531 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
534 DdeGetLastError(client_pid
);
535 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_MONITOR
, default_timeout
, &res
);
536 ret
= DdeGetLastError(client_pid
);
537 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
538 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
539 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
542 DdeGetLastError(client_pid
);
543 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REGISTER
, default_timeout
, &res
);
544 ret
= DdeGetLastError(client_pid
);
545 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
546 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
547 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
550 DdeGetLastError(client_pid
);
551 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_UNREGISTER
, default_timeout
, &res
);
552 ret
= DdeGetLastError(client_pid
);
553 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
554 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
555 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
558 DdeGetLastError(client_pid
);
559 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_WILDCONNECT
, default_timeout
, &res
);
560 ret
= DdeGetLastError(client_pid
);
561 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
562 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
563 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
566 DdeGetLastError(client_pid
);
567 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_XACT_COMPLETE
, default_timeout
, &res
);
568 ret
= DdeGetLastError(client_pid
);
569 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
570 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
571 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
573 DdeFreeStringHandle(client_pid
, item
);
575 ret
= DdeDisconnect(conversation
);
576 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
578 ret
= DdeUninitialize(client_pid
);
579 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
582 static DWORD server_pid
;
584 static HDDEDATA CALLBACK
server_ddeml_callback(UINT uType
, UINT uFmt
, HCONV hconv
,
585 HSZ hsz1
, HSZ hsz2
, HDDEDATA hdata
,
586 ULONG_PTR dwData1
, ULONG_PTR dwData2
)
588 char str
[MAX_PATH
], *ptr
;
592 static int msg_index
= 0;
593 static HCONV conversation
= 0;
601 ok(msg_index
== 1, "Expected 1, got %d\n", msg_index
);
602 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
603 ok(hconv
== 0, "Expected 0, got %p\n", hconv
);
604 ok(hdata
== 0, "Expected 0, got %p\n", hdata
);
605 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
606 ok(dwData2
== 0, "Expected 0, got %08lx\n", dwData2
);
608 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
609 ok(!lstrcmpA(str
, "TestDDEServer"), "Expected TestDDEServer, got %s\n", str
);
610 ok(size
== 13, "Expected 13, got %d\n", size
);
612 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
613 if (!strncmp( str
, "TestDDEServer:(", 15 )) /* win9x style */
615 ok(size
== 16 + 2*sizeof(WORD
), "Got size %d for %s\n", size
, str
);
619 ok(!strncmp(str
, "TestDDEServer(", 14), "Expected TestDDEServer(, got %s\n", str
);
620 ok(size
== 17 + 2*sizeof(ULONG_PTR
), "Got size %d for %s\n", size
, str
);
622 ok(str
[size
- 1] == ')', "Expected ')', got %c\n", str
[size
- 1]);
624 return (HDDEDATA
)TRUE
;
629 ok(msg_index
== 2, "Expected 2, got %d\n", msg_index
);
630 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
631 ok(hconv
== 0, "Expected 0, got %p\n", hconv
);
632 ok(hdata
== 0, "Expected 0, got %p\n", hdata
);
633 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
634 ok(dwData2
== FALSE
, "Expected FALSE, got %08lx\n", dwData2
);
636 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
637 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
638 ok(size
== 12, "Expected 12, got %d\n", size
);
640 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
641 ok(!lstrcmpA(str
, "TestDDEServer"), "Expected TestDDEServer, got %s\n", str
);
642 ok(size
== 13, "Expected 13, got %d\n", size
);
644 return (HDDEDATA
)TRUE
;
647 case XTYP_CONNECT_CONFIRM
:
649 conversation
= hconv
;
651 ok(msg_index
== 3, "Expected 3, got %d\n", msg_index
);
652 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
653 ok(hconv
!= NULL
, "Expected non-NULL hconv\n");
654 ok(hdata
== 0, "Expected 0, got %p\n", hdata
);
655 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
656 ok(dwData2
== FALSE
, "Expected FALSE, got %08lx\n", dwData2
);
658 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
659 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
660 ok(size
== 12, "Expected 12, got %d\n", size
);
662 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
663 ok(!lstrcmpA(str
, "TestDDEServer"), "Expected TestDDEServer, got %s\n", str
);
664 ok(size
== 13, "Expected 13, got %d\n", size
);
666 return (HDDEDATA
)TRUE
;
671 ok(msg_index
== 4 || msg_index
== 5 || msg_index
== 6,
672 "Expected 4, 5 or 6, got %d\n", msg_index
);
673 ok(hconv
== conversation
, "Expected conversation handle, got %p\n", hconv
);
674 ok(hdata
== 0, "Expected 0, got %p\n", hdata
);
675 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
676 ok(dwData2
== 0, "Expected 0, got %08lx\n", dwData2
);
679 ok(uFmt
== 0xbeef, "Expected 0xbeef, got %08x\n", uFmt
);
681 ok(uFmt
== CF_TEXT
, "Expected CF_TEXT, got %08x\n", uFmt
);
683 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
684 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
685 ok(size
== 12, "Expected 12, got %d\n", size
);
687 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
692 ok(!lstrcmpA(str
, ""), "Expected empty string, got %s\n", str
);
693 ok(size
== 1, "Expected 1, got %d\n", size
);
696 else if (msg_index
== 6)
698 ok(!lstrcmpA(str
, "request"), "Expected request, got %s\n", str
);
699 ok(size
== 7, "Expected 7, got %d\n", size
);
704 lstrcpyA(str
, "requested data\r\n");
705 return DdeCreateDataHandle(server_pid
, (LPBYTE
)str
, lstrlenA(str
) + 1,
706 0, hsz2
, CF_TEXT
, 0);
714 ok(msg_index
== 7 || msg_index
== 8, "Expected 7 or 8, got %d\n", msg_index
);
715 ok(uFmt
== CF_TEXT
, "Expected CF_TEXT, got %d\n", uFmt
);
716 ok(hconv
== conversation
, "Expected conversation handle, got %p\n", hconv
);
717 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
718 ok(dwData2
== 0, "Expected 0, got %08lx\n", dwData2
);
720 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
721 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
722 ok(size
== 12, "Expected 12, got %d\n", size
);
724 ptr
= (LPSTR
)DdeAccessData(hdata
, &size
);
725 ok(!lstrcmpA(ptr
, "poke data\r\n"), "Expected 'poke data\\r\\n', got %s\n", ptr
);
726 ok(size
== 12 || broken(size
== 28), /* sizes are rounded up on win9x */
727 "Expected 12, got %d\n", size
);
728 DdeUnaccessData(hdata
);
730 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
734 ok(!lstrcmpA(str
, ""), "Expected empty string, got %s\n", str
);
735 ok(size
== 1, "Expected 1, got %d\n", size
);
740 ok(!lstrcmpA(str
, "poke"), "Expected poke, got %s\n", str
);
741 ok(size
== 4, "Expected 4, got %d\n", size
);
744 return (HDDEDATA
)DDE_FACK
;
749 ok(msg_index
>= 9 && msg_index
<= 11, "Expected 9 or 11, got %d\n", msg_index
);
750 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
751 ok(hconv
== conversation
, "Expected conversation handle, got %p\n", hconv
);
752 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
753 ok(dwData2
== 0, "Expected 0, got %08lx\n", dwData2
);
754 ok(hsz2
== 0, "Expected 0, got %p\n", hsz2
);
756 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
757 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
758 ok(size
== 12, "Expected 12, got %d\n", size
);
760 if (msg_index
== 9 || msg_index
== 11)
762 ptr
= (LPSTR
)DdeAccessData(hdata
, &size
);
766 ok(!lstrcmpA(ptr
, "[Command(Var)]"), "Expected '[Command(Var)]', got %s\n", ptr
);
767 ok(size
== 15, "Expected 15, got %d\n", size
);
768 ret
= (HDDEDATA
)DDE_FACK
;
772 ok(!lstrcmpA(ptr
, "[BadCommand(Var)]"), "Expected '[BadCommand(Var)]', got %s\n", ptr
);
773 ok(size
== 18, "Expected 18, got %d\n", size
);
774 ret
= DDE_FNOTPROCESSED
;
777 DdeUnaccessData(hdata
);
779 else if (msg_index
== 10)
784 size
= DdeGetData(hdata
, NULL
, 0, 0);
785 ok(size
== 17, "DdeGetData should have returned 17 not %d\n", size
);
786 ptr
= HeapAlloc(GetProcessHeap(), 0, size
);
787 ok(ptr
!= NULL
,"HeapAlloc should have returned ptr not NULL\n");
788 rsize
= DdeGetData(hdata
, (LPBYTE
)ptr
, size
, 0);
789 ok(rsize
== size
, "DdeGetData did not return %d bytes but %d\n", size
, rsize
);
791 ok(!lstrcmpA(ptr
, "[Command-2(Var)]"), "Expected '[Command-2(Var)]' got %s\n", ptr
);
792 ok(size
== 17, "Expected 17, got %d\n", size
);
793 ret
= (HDDEDATA
)DDE_FACK
;
795 HeapFree(GetProcessHeap(), 0, ptr
);
801 case XTYP_DISCONNECT
:
803 ok(msg_index
== 12, "Expected 12, got %d\n", msg_index
);
804 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
805 ok(hconv
== conversation
, "Expected conversation handle, got %p\n", hconv
);
806 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
807 ok(dwData2
== 0, "Expected 0, got %08lx\n", dwData2
);
808 ok(hsz1
== 0, "Expected 0, got %p\n", hsz2
);
809 ok(hsz2
== 0, "Expected 0, got %p\n", hsz2
);
815 ok(FALSE
, "Unhandled msg: %08x\n", uType
);
821 static void test_ddeml_server(HANDLE hproc
)
829 /* set up DDE server */
831 res
= DdeInitialize(&server_pid
, server_ddeml_callback
, APPCLASS_STANDARD
, 0);
832 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
834 server
= DdeCreateStringHandle(server_pid
, "TestDDEServer", CP_WINANSI
);
835 ok(server
!= NULL
, "Expected non-NULL string handle\n");
837 hdata
= DdeNameService(server_pid
, server
, 0, DNS_REGISTER
);
838 ok(hdata
== (HDDEDATA
)TRUE
, "Expected TRUE, got %p\n", hdata
);
840 while (MsgWaitForMultipleObjects( 1, &hproc
, FALSE
, INFINITE
, QS_ALLINPUT
) != 0)
842 while (PeekMessage(&msg
, 0, 0, 0, PM_REMOVE
)) DispatchMessageA(&msg
);
844 ret
= DdeUninitialize(server_pid
);
845 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
846 GetExitCodeProcess( hproc
, &res
);
847 ok( !res
, "client failed with %u error(s)\n", res
);
850 static HWND client_hwnd
, server_hwnd
;
851 static ATOM server
, topic
, item
;
852 static HGLOBAL execute_hglobal
;
854 static LRESULT WINAPI
dde_msg_client_wndproc(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
863 static int msg_index
= 0;
865 if (msg
< WM_DDE_FIRST
|| msg
> WM_DDE_LAST
)
866 return DefWindowProcA(hwnd
, msg
, wparam
, lparam
);
872 case WM_DDE_INITIATE
:
874 ok(msg_index
== 1, "Expected 1, got %d\n", msg_index
);
875 ok(wparam
== (WPARAM
)client_hwnd
, "Expected client hwnd, got %08lx\n", wparam
);
877 size
= GlobalGetAtomNameA(LOWORD(lparam
), str
, MAX_PATH
);
878 ok(LOWORD(lparam
) == server
, "Expected server atom, got %08x\n", LOWORD(lparam
));
879 ok(!lstrcmpA(str
, "TestDDEServer"), "Expected TestDDEServer, got %s\n", str
);
880 ok(size
== 13, "Expected 13, got %d\n", size
);
882 size
= GlobalGetAtomNameA(HIWORD(lparam
), str
, MAX_PATH
);
883 ok(HIWORD(lparam
) == topic
, "Expected topic atom, got %08x\n", HIWORD(lparam
));
884 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
885 ok(size
== 12, "Expected 12, got %d\n", size
);
892 ok((msg_index
>= 2 && msg_index
<= 4) || (msg_index
>= 6 && msg_index
<= 11),
893 "Expected 2, 3, 4, 6, 7, 8, 9, 10 or 11, got %d\n", msg_index
);
897 server_hwnd
= (HWND
)wparam
;
898 ok(wparam
!= 0, "Expected non-NULL wparam, got %08lx\n", wparam
);
900 size
= GlobalGetAtomNameA(LOWORD(lparam
), str
, MAX_PATH
);
901 ok(LOWORD(lparam
) == server
, "Expected server atom, got %08x\n", LOWORD(lparam
));
902 ok(!lstrcmpA(str
, "TestDDEServer"), "Expected TestDDEServer, got %s\n", str
);
903 ok(size
== 13, "Expected 13, got %d\n", size
);
905 size
= GlobalGetAtomNameA(HIWORD(lparam
), str
, MAX_PATH
);
906 ok(HIWORD(lparam
) == topic
, "Expected topic atom, got %08x\n", HIWORD(lparam
));
907 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
908 ok(size
== 12, "Expected 12, got %d\n", size
);
910 else if (msg_index
>= 9 && msg_index
<= 11)
912 ok(wparam
== (WPARAM
)server_hwnd
, "Expected server hwnd, got %08lx\n", wparam
);
914 UnpackDDElParam(WM_DDE_ACK
, lparam
, &lo
, &hi
);
917 ok(ack
->bAppReturnCode
== 0, "Expected 0, got %d\n", ack
->bAppReturnCode
);
918 ok(ack
->reserved
== 0, "Expected 0, got %d\n", ack
->reserved
);
919 ok(ack
->fBusy
== FALSE
, "Expected FALSE, got %d\n", ack
->fBusy
);
921 ok(hi
== (UINT_PTR
)execute_hglobal
, "Expected execute hglobal, got %08lx\n", hi
);
922 ptr
= GlobalLock((HGLOBAL
)hi
);
926 ok(ack
->fAck
== TRUE
, "Expected TRUE, got %d\n", ack
->fAck
);
927 ok(!lstrcmpA(ptr
, "[Command(Var)]"), "Expected '[Command(Var)]', got %s\n", ptr
);
928 } else if (msg_index
== 10)
930 ok(ack
->fAck
== TRUE
, "Expected TRUE, got %d\n", ack
->fAck
);
931 ok(!lstrcmpA(ptr
, "[Command-2(Var)]"), "Expected '[Command-2(Var)]', got %s\n", ptr
);
935 ok(ack
->fAck
== FALSE
, "Expected FALSE, got %d\n", ack
->fAck
);
936 ok(!lstrcmpA(ptr
, "[BadCommand(Var)]"), "Expected '[BadCommand(Var)]', got %s\n", ptr
);
939 GlobalUnlock((HGLOBAL
)hi
);
943 ok(wparam
== (WPARAM
)server_hwnd
, "Expected server hwnd, got %08lx\n", wparam
);
945 UnpackDDElParam(WM_DDE_ACK
, lparam
, &lo
, &hi
);
948 ok(ack
->bAppReturnCode
== 0, "Expected 0, got %d\n", ack
->bAppReturnCode
);
949 ok(ack
->reserved
== 0, "Expected 0, got %d\n", ack
->reserved
);
950 ok(ack
->fBusy
== FALSE
, "Expected FALSE, got %d\n", ack
->fBusy
);
953 ok(ack
->fAck
== TRUE
, "Expected TRUE, got %d\n", ack
->fAck
);
956 if (msg_index
== 6) todo_wine
957 ok(ack
->fAck
== FALSE
, "Expected FALSE, got %d\n", ack
->fAck
);
960 size
= GlobalGetAtomNameA(hi
, str
, MAX_PATH
);
963 ok(hi
== item
, "Expected item atom, got %08lx\n", hi
);
964 ok(!lstrcmpA(str
, "request"), "Expected request, got %s\n", str
);
965 ok(size
== 7, "Expected 7, got %d\n", size
);
967 else if (msg_index
== 4 || msg_index
== 7)
969 ok(hi
== 0, "Expected 0, got %08lx\n", hi
);
970 ok(size
== 0, "Expected empty string, got %d\n", size
);
974 ok(hi
== item
, "Expected item atom, got %08lx\n", hi
);
975 if (msg_index
== 6) todo_wine
977 ok(!lstrcmpA(str
, "poke"), "Expected poke, got %s\n", str
);
978 ok(size
== 4, "Expected 4, got %d\n", size
);
988 ok(msg_index
== 5, "Expected 5, got %d\n", msg_index
);
989 ok(wparam
== (WPARAM
)server_hwnd
, "Expected server hwnd, got %08lx\n", wparam
);
991 UnpackDDElParam(WM_DDE_DATA
, lparam
, &lo
, &hi
);
993 data
= GlobalLock((HGLOBAL
)lo
);
994 ok(data
->unused
== 0, "Expected 0, got %d\n", data
->unused
);
995 ok(data
->fResponse
== TRUE
, "Expected TRUE, got %d\n", data
->fResponse
);
998 ok(data
->fRelease
== TRUE
, "Expected TRUE, got %d\n", data
->fRelease
);
1000 ok(data
->fAckReq
== 0, "Expected 0, got %d\n", data
->fAckReq
);
1001 ok(data
->cfFormat
== CF_TEXT
, "Expected CF_TEXT, got %d\n", data
->cfFormat
);
1002 ok(!lstrcmpA((LPSTR
)data
->Value
, "requested data\r\n"),
1003 "Expeted 'requested data\\r\\n', got %s\n", data
->Value
);
1004 GlobalUnlock((HGLOBAL
)lo
);
1006 size
= GlobalGetAtomNameA(hi
, str
, MAX_PATH
);
1007 ok(hi
== item
, "Expected item atom, got %08x\n", HIWORD(lparam
));
1008 ok(!lstrcmpA(str
, "request"), "Expected request, got %s\n", str
);
1009 ok(size
== 7, "Expected 7, got %d\n", size
);
1011 GlobalFree((HGLOBAL
)lo
);
1012 GlobalDeleteAtom(hi
);
1018 ok(FALSE
, "Unhandled msg: %08x\n", msg
);
1021 return DefWindowProcA(hwnd
, msg
, wparam
, lparam
);
1024 static HGLOBAL
create_poke(void)
1030 size
= FIELD_OFFSET(DDEPOKE
, Value
[sizeof("poke data\r\n")]);
1031 hglobal
= GlobalAlloc(GMEM_DDESHARE
, size
);
1032 ok(hglobal
!= 0, "Expected non-NULL hglobal\n");
1034 poke
= GlobalLock(hglobal
);
1036 poke
->fRelease
= TRUE
;
1037 poke
->fReserved
= TRUE
;
1038 poke
->cfFormat
= CF_TEXT
;
1039 lstrcpyA((LPSTR
)poke
->Value
, "poke data\r\n");
1040 GlobalUnlock(hglobal
);
1045 static HGLOBAL
create_execute(LPCSTR command
)
1050 hglobal
= GlobalAlloc(GMEM_DDESHARE
, lstrlenA(command
) + 1);
1051 ok(hglobal
!= 0, "Expected non-NULL hglobal\n");
1053 ptr
= GlobalLock(hglobal
);
1054 lstrcpyA(ptr
, command
);
1055 GlobalUnlock(hglobal
);
1060 static void test_msg_client(void)
1065 create_dde_window(&client_hwnd
, "dde_client", dde_msg_client_wndproc
);
1067 server
= GlobalAddAtomA("TestDDEServer");
1068 ok(server
!= 0, "Expected non-NULL server\n");
1070 topic
= GlobalAddAtomA("TestDDETopic");
1071 ok(topic
!= 0, "Expected non-NULL topic\n");
1073 SendMessageA(HWND_BROADCAST
, WM_DDE_INITIATE
, (WPARAM
)client_hwnd
, MAKELONG(server
, topic
));
1075 GlobalDeleteAtom(server
);
1076 GlobalDeleteAtom(topic
);
1080 item
= GlobalAddAtom("request");
1081 ok(item
!= 0, "Expected non-NULL item\n");
1083 /* WM_DDE_REQUEST, bad clipboard format */
1084 lparam
= PackDDElParam(WM_DDE_REQUEST
, 0xdeadbeef, item
);
1085 PostMessageA(server_hwnd
, WM_DDE_REQUEST
, (WPARAM
)client_hwnd
, lparam
);
1089 /* WM_DDE_REQUEST, no item */
1090 lparam
= PackDDElParam(WM_DDE_REQUEST
, CF_TEXT
, 0);
1091 PostMessageA(server_hwnd
, WM_DDE_REQUEST
, (WPARAM
)client_hwnd
, lparam
);
1095 /* WM_DDE_REQUEST, no client hwnd */
1096 lparam
= PackDDElParam(WM_DDE_REQUEST
, CF_TEXT
, item
);
1097 PostMessageA(server_hwnd
, WM_DDE_REQUEST
, 0, lparam
);
1101 /* WM_DDE_REQUEST, correct params */
1102 lparam
= PackDDElParam(WM_DDE_REQUEST
, CF_TEXT
, item
);
1103 PostMessageA(server_hwnd
, WM_DDE_REQUEST
, (WPARAM
)client_hwnd
, lparam
);
1107 GlobalDeleteAtom(item
);
1108 item
= GlobalAddAtomA("poke");
1109 ok(item
!= 0, "Expected non-NULL item\n");
1111 hglobal
= create_poke();
1113 /* WM_DDE_POKE, no ddepoke */
1114 lparam
= PackDDElParam(WM_DDE_POKE
, 0, item
);
1115 /* win9x returns 0 here and crashes in PostMessageA */
1117 PostMessageA(server_hwnd
, WM_DDE_POKE
, (WPARAM
)client_hwnd
, lparam
);
1121 win_skip("no lparam for WM_DDE_POKE\n");
1124 /* WM_DDE_POKE, no item */
1125 lparam
= PackDDElParam(WM_DDE_POKE
, (UINT_PTR
)hglobal
, 0);
1126 PostMessageA(server_hwnd
, WM_DDE_POKE
, (WPARAM
)client_hwnd
, lparam
);
1130 hglobal
= create_poke();
1132 /* WM_DDE_POKE, no client hwnd */
1133 lparam
= PackDDElParam(WM_DDE_POKE
, (UINT_PTR
)hglobal
, item
);
1134 PostMessageA(server_hwnd
, WM_DDE_POKE
, 0, lparam
);
1138 /* WM_DDE_POKE, all params correct */
1139 lparam
= PackDDElParam(WM_DDE_POKE
, (UINT_PTR
)hglobal
, item
);
1140 PostMessageA(server_hwnd
, WM_DDE_POKE
, (WPARAM
)client_hwnd
, lparam
);
1144 execute_hglobal
= create_execute("[Command(Var)]");
1146 /* WM_DDE_EXECUTE, no lparam */
1147 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, (WPARAM
)client_hwnd
, 0);
1151 /* WM_DDE_EXECUTE, no hglobal */
1152 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0, 0);
1153 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, (WPARAM
)client_hwnd
, lparam
);
1157 /* WM_DDE_EXECUTE, no client hwnd */
1158 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0, (UINT_PTR
)execute_hglobal
);
1159 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, 0, lparam
);
1163 /* WM_DDE_EXECUTE, all params correct */
1164 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0, (UINT_PTR
)execute_hglobal
);
1165 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, (WPARAM
)client_hwnd
, lparam
);
1169 GlobalFree(execute_hglobal
);
1170 execute_hglobal
= create_execute("[Command-2(Var)]");
1172 /* WM_DDE_EXECUTE, all params correct */
1173 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0, (UINT_PTR
)execute_hglobal
);
1174 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, (WPARAM
)client_hwnd
, lparam
);
1178 GlobalFree(execute_hglobal
);
1179 execute_hglobal
= create_execute("[BadCommand(Var)]");
1181 /* WM_DDE_EXECUTE that will get rejected */
1182 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0, (UINT_PTR
)execute_hglobal
);
1183 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, (WPARAM
)client_hwnd
, lparam
);
1187 destroy_dde_window(&client_hwnd
, "dde_client");
1190 static LRESULT WINAPI
hook_dde_client_wndprocA(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1194 trace("hook_dde_client_wndprocA: %p %04x %08lx %08lx\n", hwnd
, msg
, wparam
, lparam
);
1199 UnpackDDElParam(WM_DDE_ACK
, lparam
, &lo
, &hi
);
1200 trace("WM_DDE_ACK: status %04lx hglobal %p\n", lo
, (HGLOBAL
)hi
);
1206 return CallWindowProcA(old_dde_client_wndproc
, hwnd
, msg
, wparam
, lparam
);
1209 static LRESULT WINAPI
hook_dde_client_wndprocW(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1213 trace("hook_dde_client_wndprocW: %p %04x %08lx %08lx\n", hwnd
, msg
, wparam
, lparam
);
1218 UnpackDDElParam(WM_DDE_ACK
, lparam
, &lo
, &hi
);
1219 trace("WM_DDE_ACK: status %04lx hglobal %p\n", lo
, (HGLOBAL
)hi
);
1225 return CallWindowProcW(old_dde_client_wndproc
, hwnd
, msg
, wparam
, lparam
);
1228 static LRESULT WINAPI
dde_server_wndprocA(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1230 static BOOL client_unicode
, conv_unicode
;
1235 case WM_DDE_INITIATE
:
1237 ATOM aService
= GlobalAddAtomW(TEST_DDE_SERVICE
);
1239 trace("server A: got WM_DDE_INITIATE from %p (%s) with %08lx\n",
1240 (HWND
)wparam
, client_unicode
? "Unicode" : "ANSI", lparam
);
1242 if (LOWORD(lparam
) == aService
)
1244 client_unicode
= IsWindowUnicode((HWND
)wparam
);
1245 conv_unicode
= client_unicode
;
1246 if (step
>= 10) client_unicode
= !client_unicode
; /* change the client window type */
1249 old_dde_client_wndproc
= (WNDPROC
)SetWindowLongPtrW((HWND
)wparam
, GWLP_WNDPROC
,
1250 (ULONG_PTR
)hook_dde_client_wndprocW
);
1252 old_dde_client_wndproc
= (WNDPROC
)SetWindowLongPtrA((HWND
)wparam
, GWLP_WNDPROC
,
1253 (ULONG_PTR
)hook_dde_client_wndprocA
);
1254 trace("server: sending WM_DDE_ACK to %p\n", (HWND
)wparam
);
1255 SendMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, PackDDElParam(WM_DDE_ACK
, aService
, 0));
1258 GlobalDeleteAtom(aService
);
1262 case WM_DDE_EXECUTE
:
1269 trace("server A: got WM_DDE_EXECUTE from %p with %08lx\n", (HWND
)wparam
, lparam
);
1271 UnpackDDElParam(WM_DDE_EXECUTE
, lparam
, &lo
, &hi
);
1272 trace("%08lx => lo %04lx hi %04lx\n", lparam
, lo
, hi
);
1274 ack
.bAppReturnCode
= 0;
1277 /* We have to send a negative acknowledge even if we don't
1278 * accept the command, otherwise Windows goes mad and next time
1279 * we send an acknowledge DDEML drops the connection.
1280 * Not sure how to call it: a bug or a feature.
1284 if ((cmd
= GlobalLock((HGLOBAL
)hi
)))
1286 ack
.fAck
= !lstrcmpA(cmd
, exec_cmdA
) || !lstrcmpW((LPCWSTR
)cmd
, exec_cmdW
);
1290 case 0: /* bad command */
1291 trace( "server A got unhandled command\n" );
1294 case 1: /* ANSI command */
1296 ok( !lstrcmpA(cmd
, exec_cmdA
), "server A got wrong command '%s'\n", cmd
);
1297 else /* we get garbage as the A command was mapped W->A */
1298 ok( cmd
[0] == '?', "server A got wrong command '%s'\n", cmd
);
1301 case 2: /* ANSI command in Unicode format */
1303 ok( !lstrcmpA(cmd
, exec_cmdA
), "server A got wrong command '%s'\n", cmd
);
1305 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdAW
), "server A got wrong command '%s'\n", cmd
);
1308 case 3: /* Unicode command */
1310 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdW
), "server A got wrong command '%s'\n", cmd
);
1311 else /* correctly mapped W->A */
1312 ok( !lstrcmpA(cmd
, exec_cmdWA
), "server A got wrong command '%s'\n", cmd
);
1315 case 4: /* Unicode command in ANSI format */
1317 ok( !lstrcmpA(cmd
, exec_cmdWA
), "server A got wrong command '%s'\n", cmd
);
1318 else /* we get garbage as the A command was mapped W->A */
1319 ok( cmd
[0] == '?', "server A got wrong command '%s'\n", cmd
);
1322 GlobalUnlock((HGLOBAL
)hi
);
1324 else ok( 0, "bad command data %lx\n", hi
);
1327 trace("server A: posting %s WM_DDE_ACK to %p\n", ack
.fAck
? "POSITIVE" : "NEGATIVE", (HWND
)wparam
);
1329 status
= *((WORD
*)&ack
);
1330 lparam
= ReuseDDElParam(lparam
, WM_DDE_EXECUTE
, WM_DDE_ACK
, status
, hi
);
1332 PostMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
1336 case WM_DDE_TERMINATE
:
1341 trace("server A: got WM_DDE_TERMINATE from %p with %08lx\n", (HWND
)wparam
, lparam
);
1343 ack
.bAppReturnCode
= 0;
1348 trace("server A: posting %s WM_DDE_ACK to %p\n", ack
.fAck
? "POSITIVE" : "NEGATIVE", (HWND
)wparam
);
1350 status
= *((WORD
*)&ack
);
1351 lparam
= PackDDElParam(WM_DDE_ACK
, status
, 0);
1353 PostMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
1361 return DefWindowProcA(hwnd
, msg
, wparam
, lparam
);
1364 static LRESULT WINAPI
dde_server_wndprocW(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1366 static BOOL client_unicode
, conv_unicode
;
1371 case WM_DDE_INITIATE
:
1373 ATOM aService
= GlobalAddAtomW(TEST_DDE_SERVICE
);
1375 if (LOWORD(lparam
) == aService
)
1377 client_unicode
= IsWindowUnicode((HWND
)wparam
);
1378 conv_unicode
= client_unicode
;
1379 if (step
>= 10) client_unicode
= !client_unicode
; /* change the client window type */
1382 old_dde_client_wndproc
= (WNDPROC
)SetWindowLongPtrW((HWND
)wparam
, GWLP_WNDPROC
,
1383 (ULONG_PTR
)hook_dde_client_wndprocW
);
1385 old_dde_client_wndproc
= (WNDPROC
)SetWindowLongPtrA((HWND
)wparam
, GWLP_WNDPROC
,
1386 (ULONG_PTR
)hook_dde_client_wndprocA
);
1387 trace("server W: sending WM_DDE_ACK to %p\n", (HWND
)wparam
);
1388 SendMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, PackDDElParam(WM_DDE_ACK
, aService
, 0));
1391 GlobalDeleteAtom(aService
);
1393 trace("server W: got WM_DDE_INITIATE from %p with %08lx (client %s conv %s)\n", (HWND
)wparam
,
1394 lparam
, client_unicode
? "Unicode" : "ANSI", conv_unicode
? "Unicode" : "ANSI" );
1399 case WM_DDE_EXECUTE
:
1406 trace("server W: got WM_DDE_EXECUTE from %p with %08lx\n", (HWND
)wparam
, lparam
);
1408 UnpackDDElParam(WM_DDE_EXECUTE
, lparam
, &lo
, &hi
);
1409 trace("%08lx => lo %04lx hi %04lx\n", lparam
, lo
, hi
);
1411 ack
.bAppReturnCode
= 0;
1414 /* We have to send a negative acknowledge even if we don't
1415 * accept the command, otherwise Windows goes mad and next time
1416 * we send an acknowledge DDEML drops the connection.
1417 * Not sure how to call it: a bug or a feature.
1421 if ((cmd
= GlobalLock((HGLOBAL
)hi
)))
1423 ack
.fAck
= !lstrcmpA(cmd
, exec_cmdA
) || !lstrcmpW((LPCWSTR
)cmd
, exec_cmdW
);
1427 case 0: /* bad command */
1428 trace( "server W got unhandled command\n" );
1431 case 1: /* ANSI command */
1432 if (conv_unicode
&& !client_unicode
) /* W->A mapping -> garbage */
1433 ok( cmd
[0] == '?', "server W got wrong command '%s'\n", cmd
);
1434 else if (!conv_unicode
&& client_unicode
) /* A->W mapping */
1435 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdAW
), "server W got wrong command '%s'\n", cmd
);
1437 ok( !lstrcmpA(cmd
, exec_cmdA
), "server W got wrong command '%s'\n", cmd
);
1440 case 2: /* ANSI command in Unicode format */
1441 if (conv_unicode
&& !client_unicode
) /* W->A mapping */
1442 ok( !lstrcmpA(cmd
, exec_cmdA
), "server W got wrong command '%s'\n", cmd
);
1443 else if (!conv_unicode
&& client_unicode
) /* A->W mapping */
1444 ok( *(WCHAR
*)cmd
== exec_cmdAW
[0], "server W got wrong command '%s'\n", cmd
);
1446 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdAW
), "server W got wrong command '%s'\n", cmd
);
1449 case 3: /* Unicode command */
1450 if (conv_unicode
&& !client_unicode
) /* W->A mapping */
1451 ok( !lstrcmpA(cmd
, exec_cmdWA
), "server W got wrong command '%s'\n", cmd
);
1452 else if (!conv_unicode
&& client_unicode
) /* A->W mapping */
1453 ok( *(WCHAR
*)cmd
== exec_cmdW
[0], "server W got wrong command '%s'\n", cmd
);
1455 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdW
), "server W got wrong command '%s'\n", cmd
);
1458 case 4: /* Unicode command in ANSI format */
1459 if (conv_unicode
&& !client_unicode
) /* W->A mapping -> garbage */
1460 ok( cmd
[0] == '?', "server W got wrong command '%s'\n", cmd
);
1461 else if (!conv_unicode
&& client_unicode
) /* A->W mapping */
1462 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdW
), "server W got wrong command '%s'\n", cmd
);
1464 ok( !lstrcmpA(cmd
, exec_cmdWA
), "server W got wrong command '%s'\n", cmd
);
1467 GlobalUnlock((HGLOBAL
)hi
);
1469 else ok( 0, "bad command data %lx\n", hi
);
1472 trace("server W: posting %s WM_DDE_ACK to %p\n", ack
.fAck
? "POSITIVE" : "NEGATIVE", (HWND
)wparam
);
1474 status
= *((WORD
*)&ack
);
1475 lparam
= ReuseDDElParam(lparam
, WM_DDE_EXECUTE
, WM_DDE_ACK
, status
, hi
);
1477 PostMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
1481 case WM_DDE_TERMINATE
:
1486 trace("server W: got WM_DDE_TERMINATE from %p with %08lx\n", (HWND
)wparam
, lparam
);
1488 ack
.bAppReturnCode
= 0;
1493 trace("server W: posting %s WM_DDE_ACK to %p\n", ack
.fAck
? "POSITIVE" : "NEGATIVE", (HWND
)wparam
);
1495 status
= *((WORD
*)&ack
);
1496 lparam
= PackDDElParam(WM_DDE_ACK
, status
, 0);
1498 PostMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
1506 return DefWindowProcW(hwnd
, msg
, wparam
, lparam
);
1509 static HWND
create_dde_server( BOOL unicode
)
1514 static const char server_class_nameA
[] = "dde_server_windowA";
1515 static const WCHAR server_class_nameW
[] = {'d','d','e','_','s','e','r','v','e','r','_','w','i','n','d','o','w','W',0};
1519 memset(&wcW
, 0, sizeof(wcW
));
1520 wcW
.lpfnWndProc
= dde_server_wndprocW
;
1521 wcW
.lpszClassName
= server_class_nameW
;
1522 wcW
.hInstance
= GetModuleHandleA(0);
1523 RegisterClassW(&wcW
);
1525 server
= CreateWindowExW(0, server_class_nameW
, NULL
, WS_POPUP
,
1526 100, 100, CW_USEDEFAULT
, CW_USEDEFAULT
,
1527 GetDesktopWindow(), 0, GetModuleHandleA(0), NULL
);
1531 memset(&wcA
, 0, sizeof(wcA
));
1532 wcA
.lpfnWndProc
= dde_server_wndprocA
;
1533 wcA
.lpszClassName
= server_class_nameA
;
1534 wcA
.hInstance
= GetModuleHandleA(0);
1535 RegisterClassA(&wcA
);
1537 server
= CreateWindowExA(0, server_class_nameA
, NULL
, WS_POPUP
,
1538 100, 100, CW_USEDEFAULT
, CW_USEDEFAULT
,
1539 GetDesktopWindow(), 0, GetModuleHandleA(0), NULL
);
1541 ok(!IsWindowUnicode(server
) == !unicode
, "wrong unicode type\n");
1545 static HDDEDATA CALLBACK
client_dde_callback(UINT uType
, UINT uFmt
, HCONV hconv
,
1546 HSZ hsz1
, HSZ hsz2
, HDDEDATA hdata
,
1547 ULONG_PTR dwData1
, ULONG_PTR dwData2
)
1549 static const char * const cmd_type
[15] = {
1550 "XTYP_ERROR", "XTYP_ADVDATA", "XTYP_ADVREQ", "XTYP_ADVSTART",
1551 "XTYP_ADVSTOP", "XTYP_EXECUTE", "XTYP_CONNECT", "XTYP_CONNECT_CONFIRM",
1552 "XTYP_XACT_COMPLETE", "XTYP_POKE", "XTYP_REGISTER", "XTYP_REQUEST",
1553 "XTYP_DISCONNECT", "XTYP_UNREGISTER", "XTYP_WILDCONNECT" };
1555 const char *cmd_name
;
1557 type
= (uType
& XTYP_MASK
) >> XTYP_SHIFT
;
1558 cmd_name
= (type
<= 14) ? cmd_type
[type
] : "unknown";
1560 trace("client_dde_callback: %04x (%s) %d %p %p %p %p %08lx %08lx\n",
1561 uType
, cmd_name
, uFmt
, hconv
, hsz1
, hsz2
, hdata
, dwData1
, dwData2
);
1565 static void test_dde_aw_transaction( BOOL client_unicode
, BOOL server_unicode
)
1568 DWORD dde_inst
, ret
, err
;
1573 BOOL conv_unicode
= client_unicode
;
1574 static char test_cmd
[] = "test dde command";
1576 if (!(hwnd_server
= create_dde_server( server_unicode
))) return;
1580 ret
= DdeInitializeW(&dde_inst
, client_dde_callback
, APPCMD_CLIENTONLY
, 0);
1582 ret
= DdeInitializeA(&dde_inst
, client_dde_callback
, APPCMD_CLIENTONLY
, 0);
1583 ok(ret
== DMLERR_NO_ERROR
, "DdeInitializeA failed with error %04x (%x)\n",
1584 ret
, DdeGetLastError(dde_inst
));
1586 hsz_server
= DdeCreateStringHandleW(dde_inst
, TEST_DDE_SERVICE
, CP_WINUNICODE
);
1588 hconv
= DdeConnect(dde_inst
, hsz_server
, 0, NULL
);
1589 ok(hconv
!= 0, "DdeConnect error %x\n", DdeGetLastError(dde_inst
));
1590 err
= DdeGetLastError(dde_inst
);
1591 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
1593 info
.cb
= sizeof(info
);
1594 ret
= DdeQueryConvInfo(hconv
, QID_SYNC
, &info
);
1595 ok(ret
, "wrong info size %d, DdeQueryConvInfo error %x\n", ret
, DdeGetLastError(dde_inst
));
1596 ok(info
.ConvCtxt
.iCodePage
== client_unicode
? CP_WINUNICODE
: CP_WINANSI
,
1597 "wrong iCodePage %d\n", info
.ConvCtxt
.iCodePage
);
1598 ok(!info
.hConvPartner
, "unexpected info.hConvPartner: %p\n", info
.hConvPartner
);
1600 ok((info
.wStatus
& DDE_FACK
), "unexpected info.wStatus: %04x\n", info
.wStatus
);
1602 ok((info
.wStatus
& (ST_CONNECTED
| ST_CLIENT
)) == (ST_CONNECTED
| ST_CLIENT
), "unexpected info.wStatus: %04x\n", info
.wStatus
);
1603 ok(info
.wConvst
== XST_CONNECTED
, "unexpected info.wConvst: %04x\n", info
.wConvst
);
1604 ok(info
.wType
== 0, "unexpected info.wType: %04x\n", info
.wType
);
1606 client_unicode
= IsWindowUnicode( info
.hwnd
);
1607 trace("hwnd %p, hwndPartner %p, unicode %u\n", info
.hwnd
, info
.hwndPartner
, client_unicode
);
1609 trace("sending test client transaction command\n");
1611 hdata
= DdeClientTransaction((LPBYTE
)test_cmd
, strlen(test_cmd
) + 1, hconv
, (HSZ
)0xdead, 0xbeef, XTYP_EXECUTE
, 1000, &ret
);
1612 ok(!hdata
, "DdeClientTransaction succeeded\n");
1613 ok(ret
== DDE_FNOTPROCESSED
|| broken(ret
== (0xdead0000 | DDE_FNOTPROCESSED
)), /* win9x */
1614 "wrong status code %04x\n", ret
);
1615 err
= DdeGetLastError(dde_inst
);
1616 ok(err
== DMLERR_NOTPROCESSED
, "wrong dde error %x\n", err
);
1618 trace("sending ANSI client transaction command\n");
1620 hdata
= DdeClientTransaction((LPBYTE
)exec_cmdA
, lstrlenA(exec_cmdA
) + 1, hconv
, 0, 0, XTYP_EXECUTE
, 1000, &ret
);
1621 err
= DdeGetLastError(dde_inst
);
1622 if (conv_unicode
&& (!client_unicode
|| !server_unicode
)) /* W->A mapping -> garbage */
1624 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1625 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1626 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1628 else if (!conv_unicode
&& client_unicode
&& server_unicode
) /* A->W mapping -> wrong cmd */
1630 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1631 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1632 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1634 else /* no mapping */
1636 ok(hdata
!= 0, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1637 ok(ret
== DDE_FACK
, "wrong status code %04x\n", ret
);
1638 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
1641 trace("sending ANSI-as-Unicode client transaction command\n");
1643 hdata
= DdeClientTransaction((LPBYTE
)exec_cmdAW
, (lstrlenW(exec_cmdAW
) + 1) * sizeof(WCHAR
),
1644 hconv
, 0, 0, XTYP_EXECUTE
, 1000, &ret
);
1645 err
= DdeGetLastError(dde_inst
);
1646 if (conv_unicode
&& (!client_unicode
|| !server_unicode
)) /* W->A mapping */
1648 ok(hdata
!= 0, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1649 ok(ret
== DDE_FACK
, "wrong status code %04x\n", ret
);
1650 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
1652 else if (!conv_unicode
&& client_unicode
&& server_unicode
) /* A->W mapping -> garbage */
1654 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1655 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1656 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1658 else /* no mapping */
1660 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1661 ok(ret
== DDE_FNOTPROCESSED
|| broken(ret
== (0xdead0000 | DDE_FNOTPROCESSED
)), /* win9x */
1662 "wrong status code %04x\n", ret
);
1663 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1666 trace("sending unicode client transaction command\n");
1668 hdata
= DdeClientTransaction((LPBYTE
)exec_cmdW
, (lstrlenW(exec_cmdW
) + 1) * sizeof(WCHAR
), hconv
, 0, 0, XTYP_EXECUTE
, 1000, &ret
);
1669 err
= DdeGetLastError(dde_inst
);
1670 if (conv_unicode
&& (!client_unicode
|| !server_unicode
)) /* W->A mapping -> wrong cmd */
1672 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1673 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1674 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1676 else if (!conv_unicode
&& client_unicode
&& server_unicode
) /* A->W mapping -> garbage */
1678 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1679 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1680 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1682 else /* no mapping */
1684 ok(hdata
!= 0, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1685 ok(ret
== DDE_FACK
, "wrong status code %04x\n", ret
);
1686 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
1689 trace("sending Unicode-as-ANSI client transaction command\n");
1691 hdata
= DdeClientTransaction((LPBYTE
)exec_cmdWA
, lstrlenA(exec_cmdWA
) + 1, hconv
, 0, 0, XTYP_EXECUTE
, 1000, &ret
);
1692 err
= DdeGetLastError(dde_inst
);
1693 if (conv_unicode
&& (!client_unicode
|| !server_unicode
)) /* W->A mapping -> garbage */
1695 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1696 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1697 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1699 else if (!conv_unicode
&& client_unicode
&& server_unicode
) /* A->W mapping */
1701 ok(hdata
!= 0, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1702 ok(ret
== DDE_FACK
, "wrong status code %04x\n", ret
);
1703 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
1705 else /* no mapping */
1707 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1708 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1709 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1712 ok(DdeDisconnect(hconv
), "DdeDisconnect error %x\n", DdeGetLastError(dde_inst
));
1714 info
.cb
= sizeof(info
);
1715 ret
= DdeQueryConvInfo(hconv
, QID_SYNC
, &info
);
1716 ok(!ret
, "DdeQueryConvInfo should fail\n");
1717 err
= DdeGetLastError(dde_inst
);
1719 ok(err
== DMLERR_INVALIDPARAMETER
, "wrong dde error %x\n", err
);
1722 ok(DdeFreeStringHandle(dde_inst
, hsz_server
), "DdeFreeStringHandle error %x\n", DdeGetLastError(dde_inst
));
1724 /* This call hangs on win2k SP4 and XP SP1.
1725 DdeUninitialize(dde_inst);*/
1727 DestroyWindow(hwnd_server
);
1730 static void test_initialisation(void)
1735 HSZ server
, topic
, item
;
1739 /* Initialise without a valid server window. */
1741 ret
= DdeInitializeA(&client_pid
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
1742 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
1745 server
= DdeCreateStringHandleA(client_pid
, "TestDDEService", CP_WINANSI
);
1746 topic
= DdeCreateStringHandleA(client_pid
, "TestDDETopic", CP_WINANSI
);
1748 DdeGetLastError(client_pid
);
1750 /* There is no server window so no conversation can be extracted */
1751 conversation
= DdeConnect(client_pid
, server
, topic
, NULL
);
1752 ok(conversation
== NULL
, "Expected NULL conversation, %p\n", conversation
);
1753 ret
= DdeGetLastError(client_pid
);
1754 ok(ret
== DMLERR_NO_CONV_ESTABLISHED
, "Expected DMLERR_NO_CONV_ESTABLISHED, got %d\n", ret
);
1756 DdeFreeStringHandle(client_pid
, server
);
1758 item
= DdeCreateStringHandleA(client_pid
, "request", CP_WINANSI
);
1760 /* There is no converstation so an invalild parameter results */
1762 DdeGetLastError(client_pid
);
1763 hdata
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
1764 ok(hdata
== NULL
, "Expected NULL, got %p\n", hdata
);
1765 ret
= DdeGetLastError(client_pid
);
1767 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
1768 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %08x\n", res
);
1770 DdeFreeStringHandle(client_pid
, server
);
1771 ret
= DdeDisconnect(conversation
);
1772 ok(ret
== FALSE
, "Expected FALSE, got %d\n", ret
);
1774 ret
= DdeUninitialize(client_pid
);
1775 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1778 static void test_DdeCreateStringHandleW(DWORD dde_inst
, int codepage
)
1780 static const WCHAR dde_string
[] = {'D','D','E',' ','S','t','r','i','n','g',0};
1787 str_handle
= DdeCreateStringHandleW(dde_inst
, dde_string
, codepage
);
1788 ok(str_handle
!= 0, "DdeCreateStringHandleW failed with error %08x\n",
1789 DdeGetLastError(dde_inst
));
1791 ret
= DdeQueryStringW(dde_inst
, str_handle
, NULL
, 0, codepage
);
1792 if (codepage
== CP_WINANSI
)
1793 ok(ret
== 1, "DdeQueryStringW returned wrong length %d\n", ret
);
1795 ok(ret
== lstrlenW(dde_string
), "DdeQueryStringW returned wrong length %d\n", ret
);
1797 ret
= DdeQueryStringW(dde_inst
, str_handle
, bufW
, 256, codepage
);
1798 if (codepage
== CP_WINANSI
)
1800 ok(ret
== 1, "DdeQueryStringW returned wrong length %d\n", ret
);
1801 ok(!lstrcmpA("D", (LPCSTR
)bufW
), "DdeQueryStringW returned wrong string\n");
1805 ok(ret
== lstrlenW(dde_string
), "DdeQueryStringW returned wrong length %d\n", ret
);
1806 ok(!lstrcmpW(dde_string
, bufW
), "DdeQueryStringW returned wrong string\n");
1809 ret
= DdeQueryStringA(dde_inst
, str_handle
, buf
, 256, CP_WINANSI
);
1810 if (codepage
== CP_WINANSI
)
1812 ok(ret
== 1, "DdeQueryStringA returned wrong length %d\n", ret
);
1813 ok(!lstrcmpA("D", buf
), "DdeQueryStringW returned wrong string\n");
1817 ok(ret
== lstrlenA("DDE String"), "DdeQueryStringA returned wrong length %d\n", ret
);
1818 ok(!lstrcmpA("DDE String", buf
), "DdeQueryStringA returned wrong string %s\n", buf
);
1821 ret
= DdeQueryStringA(dde_inst
, str_handle
, buf
, 256, CP_WINUNICODE
);
1822 if (codepage
== CP_WINANSI
)
1824 ok(ret
== 1, "DdeQueryStringA returned wrong length %d\n", ret
);
1825 ok(!lstrcmpA("D", buf
), "DdeQueryStringA returned wrong string %s\n", buf
);
1829 ok(ret
== lstrlenA("DDE String"), "DdeQueryStringA returned wrong length %d\n", ret
);
1830 ok(!lstrcmpW(dde_string
, (LPCWSTR
)buf
), "DdeQueryStringW returned wrong string\n");
1833 if (codepage
== CP_WINANSI
)
1835 atom
= FindAtomA((LPSTR
)dde_string
);
1836 ok(atom
!= 0, "Expected a valid atom\n");
1838 SetLastError(0xdeadbeef);
1839 atom
= GlobalFindAtomA((LPSTR
)dde_string
);
1840 ok(atom
== 0, "Expected 0, got %d\n", atom
);
1841 ok(GetLastError() == ERROR_FILE_NOT_FOUND
,
1842 "Expected ERROR_FILE_NOT_FOUND, got %d\n", GetLastError());
1846 atom
= FindAtomW(dde_string
);
1847 ok(atom
!= 0, "Expected a valid atom\n");
1849 SetLastError(0xdeadbeef);
1850 atom
= GlobalFindAtomW(dde_string
);
1851 ok(atom
== 0, "Expected 0, got %d\n", atom
);
1852 ok(GetLastError() == ERROR_FILE_NOT_FOUND
,
1853 "Expected ERROR_FILE_NOT_FOUND, got %d\n", GetLastError());
1856 ok(DdeFreeStringHandle(dde_inst
, str_handle
), "DdeFreeStringHandle failed\n");
1859 static void test_DdeCreateDataHandle(void)
1862 DWORD dde_inst
, dde_inst2
;
1868 WCHAR item_str
[] = {'i','t','e','m',0};
1872 res
= DdeInitializeA(&dde_inst
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
1873 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
1875 res
= DdeInitializeA(&dde_inst2
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
1876 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
1879 * This block tests an invalid instance Id. The correct behaviour is that if the instance Id
1880 * is invalid then the lastError of all instances is set to the error. There are two instances
1881 * created, lastError is cleared, an error is generated and then both instances are checked to
1882 * ensure that they both have the same error set
1884 item
= DdeCreateStringHandleA(0, "item", CP_WINANSI
);
1885 ok(item
== NULL
, "Expected NULL hsz got %p\n", item
);
1886 err
= DdeGetLastError(dde_inst
);
1887 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1888 err
= DdeGetLastError(dde_inst2
);
1889 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1890 item
= DdeCreateStringHandleW(0, item_str
, CP_WINUNICODE
);
1891 ok(item
== NULL
, "Expected NULL hsz got %p\n", item
);
1892 err
= DdeGetLastError(dde_inst
);
1893 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1894 err
= DdeGetLastError(dde_inst2
);
1895 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1897 item
= DdeCreateStringHandleA(dde_inst
, "item", CP_WINANSI
);
1898 ok(item
!= NULL
, "Expected non-NULL hsz\n");
1899 item
= DdeCreateStringHandleA(dde_inst2
, "item", CP_WINANSI
);
1900 ok(item
!= NULL
, "Expected non-NULL hsz\n");
1903 /* do not test with an invalid instance id: that crashes on win9x */
1904 hdata
= DdeCreateDataHandle(0xdeadbeef, (LPBYTE
)"data", MAX_PATH
, 0, item
, CF_TEXT
, 0);
1908 * This block tests an invalid instance Id. The correct behaviour is that if the instance Id
1909 * is invalid then the lastError of all instances is set to the error. There are two instances
1910 * created, lastError is cleared, an error is generated and then both instances are checked to
1911 * ensure that they both have the same error set
1913 DdeGetLastError(dde_inst
);
1914 DdeGetLastError(dde_inst2
);
1915 hdata
= DdeCreateDataHandle(0, (LPBYTE
)"data", MAX_PATH
, 0, item
, CF_TEXT
, 0);
1916 err
= DdeGetLastError(dde_inst
);
1917 ok(hdata
== NULL
, "Expected NULL, got %p\n", hdata
);
1918 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1919 err
= DdeGetLastError(dde_inst2
);
1920 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1922 ret
= DdeUninitialize(dde_inst2
);
1923 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
1927 DdeGetLastError(dde_inst
);
1928 hdata
= DdeCreateDataHandle(dde_inst
, NULL
, MAX_PATH
, 0, item
, CF_TEXT
, 0);
1929 err
= DdeGetLastError(dde_inst
);
1930 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
1931 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
1933 ptr
= DdeAccessData(hdata
, &size
);
1934 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
1935 ok(size
== 260, "Expected 260, got %d\n", size
);
1937 ret
= DdeUnaccessData(hdata
);
1938 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1940 ret
= DdeFreeDataHandle(hdata
);
1941 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1944 DdeGetLastError(dde_inst
);
1945 hdata
= DdeCreateDataHandle(dde_inst
, (LPBYTE
)"data", 0, 0, item
, CF_TEXT
, 0);
1946 err
= DdeGetLastError(dde_inst
);
1947 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
1948 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
1950 ptr
= DdeAccessData(hdata
, &size
);
1951 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
1952 ok(size
== 0, "Expected 0, got %d\n", size
);
1954 ret
= DdeUnaccessData(hdata
);
1955 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1957 ret
= DdeFreeDataHandle(hdata
);
1958 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1960 /* cbOff is non-zero */
1961 DdeGetLastError(dde_inst
);
1962 hdata
= DdeCreateDataHandle(dde_inst
, (LPBYTE
)"data", MAX_PATH
, 2, item
, CF_TEXT
, 0);
1963 err
= DdeGetLastError(dde_inst
);
1964 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
1965 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
1967 ptr
= DdeAccessData(hdata
, &size
);
1968 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
1969 ok(size
== 262, "Expected 262, got %d\n", size
);
1972 ok(lstrlenA((LPSTR
)ptr
) == 0, "Expected 0, got %d\n", lstrlenA((LPSTR
)ptr
));
1975 ret
= DdeUnaccessData(hdata
);
1976 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1978 ret
= DdeFreeDataHandle(hdata
);
1979 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1982 DdeGetLastError(dde_inst
);
1983 hdata
= DdeCreateDataHandle(dde_inst
, (LPBYTE
)"data", MAX_PATH
, 0, 0, CF_TEXT
, 0);
1984 err
= DdeGetLastError(dde_inst
);
1985 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
1986 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
1988 ptr
= DdeAccessData(hdata
, &size
);
1989 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
1990 ok(!lstrcmpA((LPSTR
)ptr
, "data"), "Expected data, got %s\n", ptr
);
1991 ok(size
== 260, "Expected 260, got %d\n", size
);
1993 ret
= DdeUnaccessData(hdata
);
1994 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1996 ret
= DdeFreeDataHandle(hdata
);
1997 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2000 DdeGetLastError(dde_inst
);
2001 hdata
= DdeCreateDataHandle(dde_inst
, (LPBYTE
)"data", MAX_PATH
, 0, (HSZ
)0xdeadbeef, CF_TEXT
, 0);
2002 err
= DdeGetLastError(dde_inst
);
2003 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
2004 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
2006 ptr
= DdeAccessData(hdata
, &size
);
2007 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2008 ok(!lstrcmpA((LPSTR
)ptr
, "data"), "Expected data, got %s\n", ptr
);
2009 ok(size
== 260, "Expected 260, got %d\n", size
);
2011 ret
= DdeUnaccessData(hdata
);
2012 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2014 ret
= DdeFreeDataHandle(hdata
);
2015 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2017 /* invalid clipboard format */
2018 DdeGetLastError(dde_inst
);
2019 hdata
= DdeCreateDataHandle(dde_inst
, (LPBYTE
)"data", MAX_PATH
, 0, item
, 0xdeadbeef, 0);
2020 err
= DdeGetLastError(dde_inst
);
2021 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
2022 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
2024 ptr
= DdeAccessData(hdata
, &size
);
2025 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2026 ok(!lstrcmpA((LPSTR
)ptr
, "data"), "Expected data, got %s\n", ptr
);
2027 ok(size
== 260, "Expected 260, got %d\n", size
);
2029 ret
= DdeUnaccessData(hdata
);
2030 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2032 ret
= DdeFreeDataHandle(hdata
);
2033 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2035 ret
= DdeUninitialize(dde_inst
);
2036 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
2039 static void test_DdeCreateStringHandle(void)
2041 DWORD dde_inst
, ret
;
2043 dde_inst
= 0xdeadbeef;
2044 SetLastError(0xdeadbeef);
2045 ret
= DdeInitializeW(&dde_inst
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
2046 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED
)
2048 win_skip("DdeInitializeW is unimplemented\n");
2052 ok(ret
== DMLERR_INVALIDPARAMETER
, "DdeInitializeW should fail, but got %04x instead\n", ret
);
2053 ok(DdeGetLastError(dde_inst
) == DMLERR_INVALIDPARAMETER
, "expected DMLERR_INVALIDPARAMETER\n");
2056 ret
= DdeInitializeW(&dde_inst
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
2057 ok(ret
== DMLERR_NO_ERROR
, "DdeInitializeW failed with error %04x (%08x)\n",
2058 ret
, DdeGetLastError(dde_inst
));
2060 test_DdeCreateStringHandleW(dde_inst
, 0);
2061 test_DdeCreateStringHandleW(dde_inst
, CP_WINUNICODE
);
2062 test_DdeCreateStringHandleW(dde_inst
, CP_WINANSI
);
2064 ok(DdeUninitialize(dde_inst
), "DdeUninitialize failed\n");
2067 static void test_FreeDDElParam(void)
2069 HGLOBAL val
, hglobal
;
2072 ret
= FreeDDElParam(WM_DDE_INITIATE
, 0);
2073 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2075 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2076 ret
= FreeDDElParam(WM_DDE_INITIATE
, (LPARAM
)hglobal
);
2077 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2078 val
= GlobalFree(hglobal
);
2079 ok(val
== NULL
, "Expected NULL, got %p\n", val
);
2081 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2082 ret
= FreeDDElParam(WM_DDE_ADVISE
, (LPARAM
)hglobal
);
2083 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2085 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2086 ret
= FreeDDElParam(WM_DDE_UNADVISE
, (LPARAM
)hglobal
);
2087 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2088 val
= GlobalFree(hglobal
);
2089 ok(val
== NULL
, "Expected NULL, got %p\n", val
);
2091 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2092 ret
= FreeDDElParam(WM_DDE_ACK
, (LPARAM
)hglobal
);
2093 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2095 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2096 ret
= FreeDDElParam(WM_DDE_DATA
, (LPARAM
)hglobal
);
2097 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2099 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2100 ret
= FreeDDElParam(WM_DDE_REQUEST
, (LPARAM
)hglobal
);
2101 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2102 val
= GlobalFree(hglobal
);
2103 ok(val
== NULL
, "Expected NULL, got %p\n", val
);
2105 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2106 ret
= FreeDDElParam(WM_DDE_POKE
, (LPARAM
)hglobal
);
2107 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2109 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2110 ret
= FreeDDElParam(WM_DDE_EXECUTE
, (LPARAM
)hglobal
);
2111 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2112 val
= GlobalFree(hglobal
);
2113 ok(val
== NULL
, "Expected NULL, got %p\n", val
);
2116 static void test_PackDDElParam(void)
2118 UINT_PTR lo
, hi
, *ptr
;
2122 lparam
= PackDDElParam(WM_DDE_INITIATE
, 0xcafe, 0xbeef);
2123 /* value gets sign-extended despite being an LPARAM */
2124 ok(lparam
== (int)0xbeefcafe, "Expected 0xbeefcafe, got %08lx\n", lparam
);
2127 ret
= UnpackDDElParam(WM_DDE_INITIATE
, lparam
, &lo
, &hi
);
2128 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2129 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2130 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2132 ret
= FreeDDElParam(WM_DDE_INITIATE
, lparam
);
2133 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2135 lparam
= PackDDElParam(WM_DDE_TERMINATE
, 0xcafe, 0xbeef);
2136 ok(lparam
== (int)0xbeefcafe, "Expected 0xbeefcafe, got %08lx\n", lparam
);
2139 ret
= UnpackDDElParam(WM_DDE_TERMINATE
, lparam
, &lo
, &hi
);
2140 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2141 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2142 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2144 ret
= FreeDDElParam(WM_DDE_TERMINATE
, lparam
);
2145 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2147 lparam
= PackDDElParam(WM_DDE_ADVISE
, 0xcafe, 0xbeef);
2148 /* win9x returns 0 here */
2150 ptr
= GlobalLock((HGLOBAL
)lparam
);
2151 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2152 ok(ptr
[0] == 0xcafe, "Expected 0xcafe, got %08lx\n", ptr
[0]);
2153 ok(ptr
[1] == 0xbeef, "Expected 0xbeef, got %08lx\n", ptr
[1]);
2155 ret
= GlobalUnlock((HGLOBAL
)lparam
);
2156 ok(ret
== 1, "Expected 1, got %d\n", ret
);
2159 ret
= UnpackDDElParam(WM_DDE_ADVISE
, lparam
, &lo
, &hi
);
2160 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2161 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2162 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2165 win_skip("no lparam for WM_DDE_ADVISE\n");
2167 ret
= FreeDDElParam(WM_DDE_ADVISE
, lparam
);
2168 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2170 lparam
= PackDDElParam(WM_DDE_UNADVISE
, 0xcafe, 0xbeef);
2171 ok(lparam
== (int)0xbeefcafe, "Expected 0xbeefcafe, got %08lx\n", lparam
);
2174 ret
= UnpackDDElParam(WM_DDE_UNADVISE
, lparam
, &lo
, &hi
);
2175 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2176 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2177 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2179 ret
= FreeDDElParam(WM_DDE_UNADVISE
, lparam
);
2180 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2182 lparam
= PackDDElParam(WM_DDE_ACK
, 0xcafe, 0xbeef);
2183 /* win9x returns the input (0xbeef<<16 | 0xcafe) here */
2184 if (lparam
!= (int)0xbeefcafe) {
2185 ptr
= GlobalLock((HGLOBAL
)lparam
);
2186 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2187 ok(ptr
[0] == 0xcafe, "Expected 0xcafe, got %08lx\n", ptr
[0]);
2188 ok(ptr
[1] == 0xbeef, "Expected 0xbeef, got %08lx\n", ptr
[1]);
2190 ret
= GlobalUnlock((HGLOBAL
)lparam
);
2191 ok(ret
== 1, "Expected 1, got %d\n", ret
);
2194 ret
= UnpackDDElParam(WM_DDE_ACK
, lparam
, &lo
, &hi
);
2195 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2196 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2197 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2199 ret
= FreeDDElParam(WM_DDE_ACK
, lparam
);
2200 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2203 win_skip("got lparam 0x%lx for WM_DDE_ACK\n", lparam
);
2205 lparam
= PackDDElParam(WM_DDE_DATA
, 0xcafe, 0xbeef);
2206 /* win9x returns 0 here */
2208 ptr
= GlobalLock((HGLOBAL
)lparam
);
2209 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2210 ok(ptr
[0] == 0xcafe, "Expected 0xcafe, got %08lx\n", ptr
[0]);
2211 ok(ptr
[1] == 0xbeef, "Expected 0xbeef, got %08lx\n", ptr
[1]);
2213 ret
= GlobalUnlock((HGLOBAL
)lparam
);
2214 ok(ret
== 1, "Expected 1, got %d\n", ret
);
2217 ret
= UnpackDDElParam(WM_DDE_DATA
, lparam
, &lo
, &hi
);
2218 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2219 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2220 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2223 win_skip("no lparam for WM_DDE_DATA\n");
2225 ret
= FreeDDElParam(WM_DDE_DATA
, lparam
);
2226 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2228 lparam
= PackDDElParam(WM_DDE_REQUEST
, 0xcafe, 0xbeef);
2229 ok(lparam
== (int)0xbeefcafe, "Expected 0xbeefcafe, got %08lx\n", lparam
);
2232 ret
= UnpackDDElParam(WM_DDE_REQUEST
, lparam
, &lo
, &hi
);
2233 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2234 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2235 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2237 ret
= FreeDDElParam(WM_DDE_REQUEST
, lparam
);
2238 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2240 lparam
= PackDDElParam(WM_DDE_POKE
, 0xcafe, 0xbeef);
2241 /* win9x returns 0 here */
2243 ptr
= GlobalLock((HGLOBAL
)lparam
);
2244 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2245 ok(ptr
[0] == 0xcafe, "Expected 0xcafe, got %08lx\n", ptr
[0]);
2246 ok(ptr
[1] == 0xbeef, "Expected 0xbeef, got %08lx\n", ptr
[1]);
2248 ret
= GlobalUnlock((HGLOBAL
)lparam
);
2249 ok(ret
== 1, "Expected 1, got %d\n", ret
);
2252 ret
= UnpackDDElParam(WM_DDE_POKE
, lparam
, &lo
, &hi
);
2253 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2254 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2255 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2258 win_skip("no lparam for WM_DDE_POKE\n");
2260 ret
= FreeDDElParam(WM_DDE_POKE
, lparam
);
2261 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2263 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0xcafe, 0xbeef);
2264 ok(lparam
== 0xbeef, "Expected 0xbeef, got %08lx\n", lparam
);
2267 ret
= UnpackDDElParam(WM_DDE_EXECUTE
, lparam
, &lo
, &hi
);
2268 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2269 ok(lo
== 0, "Expected 0, got %08lx\n", lo
);
2270 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2272 ret
= FreeDDElParam(WM_DDE_EXECUTE
, lparam
);
2273 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2276 static void test_UnpackDDElParam(void)
2278 UINT_PTR lo
, hi
, *ptr
;
2285 ret
= UnpackDDElParam(WM_DDE_INITIATE
, 0, &lo
, &hi
);
2286 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2287 ok(lo
== 0, "Expected 0, got %08lx\n", lo
);
2288 ok(hi
== 0, "Expected 0, got %08lx\n", hi
);
2293 ret
= UnpackDDElParam(WM_DDE_INITIATE
, 0xcafebabe, NULL
, &hi
);
2294 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2295 ok(lo
== 0xdead, "Expected 0xdead, got %08lx\n", lo
);
2296 ok(hi
== 0xcafe, "Expected 0xcafe, got %08lx\n", hi
);
2301 ret
= UnpackDDElParam(WM_DDE_INITIATE
, 0xcafebabe, &lo
, NULL
);
2302 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2303 ok(lo
== 0xbabe, "Expected 0xbabe, got %08lx\n", lo
);
2304 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2308 ret
= UnpackDDElParam(WM_DDE_INITIATE
, 0xcafebabe, &lo
, &hi
);
2309 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2310 ok(lo
== 0xbabe, "Expected 0xbabe, got %08lx\n", lo
);
2311 ok(hi
== 0xcafe, "Expected 0xcafe, got %08lx\n", hi
);
2315 ret
= UnpackDDElParam(WM_DDE_TERMINATE
, 0xcafebabe, &lo
, &hi
);
2316 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2317 ok(lo
== 0xbabe, "Expected 0xbabe, got %08lx\n", lo
);
2318 ok(hi
== 0xcafe, "Expected 0xcafe, got %08lx\n", hi
);
2322 ret
= UnpackDDElParam(WM_DDE_ADVISE
, 0, &lo
, &hi
);
2323 ok(ret
== FALSE
, "Expected FALSE, got %d\n", ret
);
2325 broken(lo
== 0xdead), /* win2k */
2326 "Expected 0, got %08lx\n", lo
);
2328 broken(hi
== 0xbeef), /* win2k */
2329 "Expected 0, got %08lx\n", hi
);
2331 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 2 * sizeof(*ptr
));
2332 ptr
= GlobalLock(hglobal
);
2333 ptr
[0] = 0xcafebabe;
2334 ptr
[1] = 0xdeadbeef;
2335 GlobalUnlock(hglobal
);
2339 ret
= UnpackDDElParam(WM_DDE_ADVISE
, (LPARAM
)hglobal
, &lo
, &hi
);
2340 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2341 ok(lo
== 0xcafebabe, "Expected 0xcafebabe, got %08lx\n", lo
);
2342 ok(hi
== 0xdeadbeef, "Expected 0xdeadbeef, got %08lx\n", hi
);
2346 ret
= UnpackDDElParam(WM_DDE_UNADVISE
, 0xcafebabe, &lo
, &hi
);
2347 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2348 ok(lo
== 0xbabe, "Expected 0xbabe, got %08lx\n", lo
);
2349 ok(hi
== 0xcafe, "Expected 0xcafe, got %08lx\n", hi
);
2353 ret
= UnpackDDElParam(WM_DDE_ACK
, (LPARAM
)hglobal
, &lo
, &hi
);
2354 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2355 ok(lo
== 0xcafebabe, "Expected 0xcafebabe, got %08lx\n", lo
);
2356 ok(hi
== 0xdeadbeef, "Expected 0xdeadbeef, got %08lx\n", hi
);
2360 ret
= UnpackDDElParam(WM_DDE_DATA
, (LPARAM
)hglobal
, &lo
, &hi
);
2361 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2362 ok(lo
== 0xcafebabe, "Expected 0xcafebabe, got %08lx\n", lo
);
2363 ok(hi
== 0xdeadbeef, "Expected 0xdeadbeef, got %08lx\n", hi
);
2367 ret
= UnpackDDElParam(WM_DDE_REQUEST
, 0xcafebabe, &lo
, &hi
);
2368 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2369 ok(lo
== 0xbabe, "Expected 0xbabe, got %08lx\n", lo
);
2370 ok(hi
== 0xcafe, "Expected 0xcafe, got %08lx\n", hi
);
2374 ret
= UnpackDDElParam(WM_DDE_POKE
, (LPARAM
)hglobal
, &lo
, &hi
);
2375 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2376 ok(lo
== 0xcafebabe, "Expected 0xcafebabe, got %08lx\n", lo
);
2377 ok(hi
== 0xdeadbeef, "Expected 0xdeadbeef, got %08lx\n", hi
);
2381 ret
= UnpackDDElParam(WM_DDE_EXECUTE
, 0xcafebabe, &lo
, &hi
);
2382 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2383 ok(lo
== 0, "Expected 0, got %08lx\n", lo
);
2384 ok(hi
== 0xcafebabe, "Expected 0xcafebabe, got %08lx\n", hi
);
2386 GlobalFree(hglobal
);
2389 static char test_cmd_a_to_a
[] = "Test dde command";
2390 static WCHAR test_cmd_w_to_w
[][32] = {
2391 {'t','e','s','t',' ','d','d','e',' ','c','o','m','m','a','n','d',0},
2392 { 0x2018, 0x2019, 0x0161, 0x0041, 0x02dc, 0 }, /* some chars that should map properly to CP1252 */
2393 { 0x2026, 0x2020, 0x2021, 0x0d0a, 0 }, /* false negative for IsTextUnicode */
2394 { 0x4efa, 0x4efc, 0x0061, 0x4efe, 0 }, /* some Chinese chars */
2396 static const int nb_callbacks
= 5 + sizeof(test_cmd_w_to_w
)/sizeof(test_cmd_w_to_w
[0]);
2398 static HDDEDATA CALLBACK
server_end_to_end_callback(UINT uType
, UINT uFmt
, HCONV hconv
,
2399 HSZ hsz1
, HSZ hsz2
, HDDEDATA hdata
,
2400 ULONG_PTR dwData1
, ULONG_PTR dwData2
)
2404 static int msg_index
= 0;
2405 static HCONV conversation
= 0;
2406 static char test_service
[] = "TestDDEService";
2407 static char test_topic
[] = "TestDDETopic";
2415 ok(msg_index
% nb_callbacks
== 1, "Expected 1 modulo %u, got %d\n", nb_callbacks
, msg_index
);
2416 return (HDDEDATA
)TRUE
;
2421 ok(msg_index
% nb_callbacks
== 2, "Expected 2 modulo %u, got %d\n", nb_callbacks
, msg_index
);
2422 ok(uFmt
== 0, "Expected 0, got %d, msg_index=%d\n", uFmt
, msg_index
);
2423 ok(hconv
== 0, "Expected 0, got %p, msg_index=%d\n", hconv
, msg_index
);
2424 ok(hdata
== 0, "Expected 0, got %p, msg_index=%d\n", hdata
, msg_index
);
2425 ok(dwData1
!= 0, "Expected not 0, got %08lx, msg_index=%d\n", dwData1
, msg_index
);
2426 ok(dwData2
== FALSE
, "Expected FALSE, got %08lx, msg_index=%d\n", dwData2
, msg_index
);
2428 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
2429 ok(!lstrcmpA(str
, test_topic
), "Expected %s, got %s, msg_index=%d\n",
2430 test_topic
, str
, msg_index
);
2431 ok(size
== 12, "Expected 12, got %d, msg_index=%d\n", size
, msg_index
);
2433 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
2434 ok(!lstrcmpA(str
, test_service
), "Expected %s, got %s, msg_index=%d\n",
2435 test_service
, str
, msg_index
);
2436 ok(size
== 14, "Expected 14, got %d, msg_index=%d\n", size
, msg_index
);
2438 return (HDDEDATA
) TRUE
;
2440 case XTYP_CONNECT_CONFIRM
:
2442 ok(msg_index
% nb_callbacks
== 3, "Expected 3 modulo %u, got %d\n", nb_callbacks
, msg_index
);
2443 conversation
= hconv
;
2444 return (HDDEDATA
) TRUE
;
2448 BYTE
*buffer
= NULL
;
2450 char test_cmd_w_to_a
[64];
2451 WCHAR test_cmd_a_to_w
[64];
2452 DWORD size_a
, size_w
, size_w_to_a
, size_a_to_w
;
2453 BOOL unicode_server
, unicode_client
, str_index
;
2455 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
2456 ok(hconv
== conversation
, "Expected conversation handle, got %p, msg_index=%d\n",
2458 ok(dwData1
== 0, "Expected 0, got %08lx, msg_index=%d\n", dwData1
, msg_index
);
2459 ok(dwData2
== 0, "Expected 0, got %08lx, msg_index=%d\n", dwData2
, msg_index
);
2460 ok(hsz2
== 0, "Expected 0, got %p, msg_index=%d\n", hsz2
, msg_index
);
2461 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
2462 ok(!lstrcmpA(str
, test_topic
), "Expected %s, got %s, msg_index=%d\n",
2463 test_topic
, str
, msg_index
);
2464 ok(size
== 12, "Expected 12, got %d, msg_index=%d\n", size
, msg_index
);
2465 ok(size
== 12, "Expected 12, got %d, msg_index=%d\n", size
, msg_index
);
2467 size
= DdeGetData(hdata
, NULL
, 0, 0);
2468 ok((buffer
= HeapAlloc(GetProcessHeap(), 0, size
)) != NULL
, "should not be null\n");
2469 rsize
= DdeGetData(hdata
, buffer
, size
, 0);
2470 ok(rsize
== size
, "Incorrect size returned, expected %d got %d, msg_index=%d\n",
2471 size
, rsize
, msg_index
);
2472 trace("msg %u strA \"%s\" strW %s\n", msg_index
, buffer
, wine_dbgstr_w((WCHAR
*)buffer
));
2474 unicode_server
= (msg_index
/ nb_callbacks
== 1 || msg_index
/ nb_callbacks
== 2);
2475 unicode_client
= (msg_index
/ nb_callbacks
== 1 || msg_index
/ nb_callbacks
== 3);
2476 str_index
= msg_index
% nb_callbacks
- 4;
2477 cmd_w
= test_cmd_w_to_w
[str_index
- 1];
2478 size_a
= strlen(test_cmd_a_to_a
) + 1;
2479 size_w
= (lstrlenW(cmd_w
) + 1) * sizeof(WCHAR
);
2480 size_a_to_w
= MultiByteToWideChar( CP_ACP
, 0, test_cmd_a_to_a
, -1, test_cmd_a_to_w
,
2481 sizeof(test_cmd_a_to_w
)/sizeof(WCHAR
) ) * sizeof(WCHAR
);
2482 size_w_to_a
= WideCharToMultiByte( CP_ACP
, 0, cmd_w
, -1,
2483 test_cmd_w_to_a
, sizeof(test_cmd_w_to_a
), NULL
, NULL
);
2486 case 0: /* ASCII string */
2489 ok(size
== size_a_to_w
, "Wrong size %d/%d, msg_index=%d\n", size
, size_a_to_w
, msg_index
);
2490 ok(!lstrcmpW((WCHAR
*)buffer
, test_cmd_a_to_w
),
2491 "Expected %s, msg_index=%d\n", wine_dbgstr_w(test_cmd_a_to_w
), msg_index
);
2493 else if (unicode_client
)
2495 /* ASCII string mapped W->A -> garbage */
2496 ok(size
== size_a
/ sizeof(WCHAR
) || size
== size_a
/ sizeof(WCHAR
) + 1,
2497 "Wrong size %d, msg_index=%d\n", size
, msg_index
);
2501 ok(size
== size_a
, "Wrong size %d/%d, msg_index=%d\n", size
, size_a
, msg_index
);
2502 ok(!lstrcmpA((CHAR
*)buffer
, test_cmd_a_to_a
), "Expected %s, got %s, msg_index=%d\n",
2503 test_cmd_a_to_a
, buffer
, msg_index
);
2507 case 1: /* Unicode string with only 8-bit chars */
2510 ok(size
== size_w
, "Wrong size %d/%d, msg_index=%d\n", size
, size_w
, msg_index
);
2511 ok(!lstrcmpW((WCHAR
*)buffer
, cmd_w
),
2512 "Expected %s, msg_index=%d\n", wine_dbgstr_w(cmd_w
), msg_index
);
2514 else if (unicode_client
)
2516 ok(size
== size_w_to_a
, "Wrong size %d/%d, msg_index=%d\n", size
, size_w_to_a
, msg_index
);
2517 ok(!lstrcmpA((CHAR
*)buffer
, test_cmd_w_to_a
), "Expected %s, got %s, msg_index=%d\n",
2518 test_cmd_w_to_a
, buffer
, msg_index
);
2522 ok(size
== size_w_to_a
, "Wrong size %d/%d, msg_index=%d\n",
2523 size
, size_w_to_a
, msg_index
);
2524 ok(!lstrcmpA((CHAR
*)buffer
, test_cmd_w_to_a
), "Expected %s, got %s, msg_index=%d\n",
2525 test_cmd_w_to_a
, buffer
, msg_index
);
2529 case 2: /* normal Unicode string */
2530 case 3: /* IsTextUnicode false negative */
2531 case 4: /* Chinese chars */
2534 /* double A->W mapping */
2535 /* NT uses the full size, XP+ only until the first null */
2536 DWORD nt_size
= MultiByteToWideChar( CP_ACP
, 0, (char *)cmd_w
, size_w
, test_cmd_a_to_w
,
2537 sizeof(test_cmd_a_to_w
)/sizeof(WCHAR
) ) * sizeof(WCHAR
);
2538 DWORD xp_size
= MultiByteToWideChar( CP_ACP
, 0, (char *)cmd_w
, -1, NULL
, 0 ) * sizeof(WCHAR
);
2539 ok(size
== xp_size
|| broken(size
== nt_size
),
2540 "Wrong size %d/%d, msg_index=%d\n", size
, size_a_to_w
, msg_index
);
2541 ok(!lstrcmpW((WCHAR
*)buffer
, test_cmd_a_to_w
),
2542 "Expected %s, msg_index=%d\n", wine_dbgstr_w(test_cmd_a_to_w
), msg_index
);
2544 else if (unicode_client
)
2546 ok(size
== size_w_to_a
, "Wrong size %d/%d, msg_index=%d\n", size
, size_w_to_a
, msg_index
);
2547 ok(!lstrcmpA((CHAR
*)buffer
, test_cmd_w_to_a
), "Expected %s, got %s, msg_index=%d\n",
2548 test_cmd_w_to_a
, buffer
, msg_index
);
2552 ok(size
== size_w
, "Wrong size %d/%d, msg_index=%d\n", size
, size_w
, msg_index
);
2553 ok(!lstrcmpW((WCHAR
*)buffer
, cmd_w
),
2554 "Expected %s, msg_index=%d\n", wine_dbgstr_w(cmd_w
), msg_index
);
2559 ok( 0, "Invalid message %u\n", msg_index
);
2562 return (HDDEDATA
) DDE_FACK
;
2564 case XTYP_DISCONNECT
:
2565 return (HDDEDATA
) TRUE
;
2568 ok(FALSE
, "Unhandled msg: %08x, msg_index=%d\n", uType
, msg_index
);
2574 static HDDEDATA CALLBACK
client_end_to_end_callback(UINT uType
, UINT uFmt
, HCONV hconv
,
2575 HSZ hsz1
, HSZ hsz2
, HDDEDATA hdata
,
2576 ULONG_PTR dwData1
, ULONG_PTR dwData2
)
2580 case XTYP_DISCONNECT
:
2581 return (HDDEDATA
) TRUE
;
2584 ok(FALSE
, "Unhandled msg: %08x\n", uType
);
2590 static void test_end_to_end_client(BOOL type_a
)
2593 DWORD client_pid
= 0;
2597 static char test_service
[] = "TestDDEService";
2598 static WCHAR test_service_w
[] = {'T','e','s','t','D','D','E','S','e','r','v','i','c','e',0};
2599 static char test_topic
[] = "TestDDETopic";
2600 static WCHAR test_topic_w
[] = {'T','e','s','t','D','D','E','T','o','p','i','c',0};
2602 trace("Start end to end client %s\n", type_a
? "ASCII" : "UNICODE");
2605 ret
= DdeInitializeA(&client_pid
, client_end_to_end_callback
, APPCMD_CLIENTONLY
, 0);
2607 ret
= DdeInitializeW(&client_pid
, client_end_to_end_callback
, APPCMD_CLIENTONLY
, 0);
2608 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %x\n", ret
);
2612 server
= DdeCreateStringHandleA(client_pid
, test_service
, CP_WINANSI
);
2613 topic
= DdeCreateStringHandleA(client_pid
, test_topic
, CP_WINANSI
);
2616 server
= DdeCreateStringHandleW(client_pid
, test_service_w
, CP_WINUNICODE
);
2617 topic
= DdeCreateStringHandleW(client_pid
, test_topic_w
, CP_WINUNICODE
);
2620 DdeGetLastError(client_pid
);
2621 hconv
= DdeConnect(client_pid
, server
, topic
, NULL
);
2622 ok(hconv
!= NULL
, "Expected non-NULL conversation\n");
2623 ret
= DdeGetLastError(client_pid
);
2624 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %x\n", ret
);
2625 DdeFreeStringHandle(client_pid
, server
);
2627 /* Test both A and W data being passed to DdeClientTransaction */
2628 hdata
= DdeClientTransaction((LPBYTE
)test_cmd_a_to_a
, sizeof(test_cmd_a_to_a
),
2629 hconv
, (HSZ
)0xdead, 0xbeef, XTYP_EXECUTE
, 1000, &ret
);
2630 ok(hdata
!= NULL
, "DdeClientTransaction failed\n");
2631 ok(ret
== DDE_FACK
, "wrong status code %x\n", ret
);
2632 err
= DdeGetLastError(client_pid
);
2633 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
2635 for (i
= 0; i
< sizeof(test_cmd_w_to_w
)/sizeof(test_cmd_w_to_w
[0]); i
++)
2637 hdata
= DdeClientTransaction((LPBYTE
)test_cmd_w_to_w
[i
],
2638 (lstrlenW(test_cmd_w_to_w
[i
]) + 1) * sizeof(WCHAR
),
2639 hconv
, (HSZ
)0xdead, 0xbeef, XTYP_EXECUTE
, 1000, &ret
);
2640 ok(hdata
!= NULL
, "DdeClientTransaction failed\n");
2641 ok(ret
== DDE_FACK
, "wrong status code %x\n", ret
);
2642 err
= DdeGetLastError(client_pid
);
2643 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
2646 DdeFreeStringHandle(client_pid
, topic
);
2647 ret
= DdeDisconnect(hconv
);
2648 ok(ret
== TRUE
, "Expected TRUE, got %x\n", ret
);
2650 ret
= DdeUninitialize(client_pid
);
2651 ok(ret
== TRUE
, "Expected TRUE, got %x\n", ret
);
2655 static void test_end_to_end_server(HANDLE hproc
, HANDLE hthread
, BOOL type_a
)
2662 static CHAR test_service
[] = "TestDDEService";
2664 trace("start end to end server %s\n", type_a
? "ASCII" : "UNICODE");
2668 res
= DdeInitializeA(&server_pid
, server_end_to_end_callback
, APPCLASS_STANDARD
, 0);
2670 res
= DdeInitializeW(&server_pid
, server_end_to_end_callback
, APPCLASS_STANDARD
, 0);
2671 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
2673 server
= DdeCreateStringHandleA(server_pid
, test_service
, CP_WINANSI
);
2674 ok(server
!= NULL
, "Expected non-NULL string handle\n");
2676 hdata
= DdeNameService(server_pid
, server
, 0, DNS_REGISTER
);
2677 ok(hdata
== (HDDEDATA
)TRUE
, "Expected TRUE, got %p\n", hdata
);
2678 ResumeThread( hthread
);
2681 while (MsgWaitForMultipleObjects( 1, &hproc
, FALSE
, INFINITE
, QS_ALLINPUT
) != 0)
2683 while (PeekMessage(&msg
, 0, 0, 0, PM_REMOVE
)) DispatchMessageA(&msg
);
2686 ret
= DdeUninitialize(server_pid
);
2687 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2688 GetExitCodeProcess( hproc
, &res
);
2689 ok( !res
, "client failed with %u error(s)\n", res
);
2696 char buffer
[MAX_PATH
];
2697 STARTUPINFO startup
;
2698 PROCESS_INFORMATION proc
;
2700 argc
= winetest_get_mainargs(&argv
);
2703 if (!lstrcmpA(argv
[2], "ddeml"))
2704 test_ddeml_client();
2705 else if (!lstrcmpA(argv
[2], "msg"))
2707 else if (!lstrcmpA(argv
[2], "enda"))
2708 test_end_to_end_client(TRUE
);
2709 else if (!lstrcmpA(argv
[2], "endw"))
2710 test_end_to_end_client(FALSE
);
2715 test_initialisation();
2717 ZeroMemory(&startup
, sizeof(STARTUPINFO
));
2718 sprintf(buffer
, "%s dde ddeml", argv
[0]);
2719 startup
.cb
= sizeof(startup
);
2720 startup
.dwFlags
= STARTF_USESHOWWINDOW
;
2721 startup
.wShowWindow
= SW_SHOWNORMAL
;
2723 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2724 CREATE_SUSPENDED
, NULL
, NULL
, &startup
, &proc
);
2726 test_msg_server(proc
.hProcess
, proc
.hThread
);
2728 sprintf(buffer
, "%s dde msg", argv
[0]);
2729 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2730 0, NULL
, NULL
, &startup
, &proc
);
2732 test_ddeml_server(proc
.hProcess
);
2734 /* Test the combinations of A and W interfaces with A and W data
2735 end to end to ensure that data conversions are accurate */
2736 sprintf(buffer
, "%s dde enda", argv
[0]);
2737 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2738 CREATE_SUSPENDED
, NULL
, NULL
, &startup
, &proc
);
2740 test_end_to_end_server(proc
.hProcess
, proc
.hThread
, TRUE
);
2742 /* Don't bother testing W interfaces on Win9x/WinMe */
2743 SetLastError(0xdeadbeef);
2744 lstrcmpW(NULL
, NULL
);
2745 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED
)
2747 win_skip("Skipping W-interface tests\n");
2751 sprintf(buffer
, "%s dde endw", argv
[0]);
2752 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2753 CREATE_SUSPENDED
, NULL
, NULL
, &startup
, &proc
);
2755 test_end_to_end_server(proc
.hProcess
, proc
.hThread
, FALSE
);
2757 sprintf(buffer
, "%s dde enda", argv
[0]);
2758 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2759 CREATE_SUSPENDED
, NULL
, NULL
, &startup
, &proc
);
2761 test_end_to_end_server(proc
.hProcess
, proc
.hThread
, FALSE
);
2763 sprintf(buffer
, "%s dde endw", argv
[0]);
2764 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2765 CREATE_SUSPENDED
, NULL
, NULL
, &startup
, &proc
);
2767 test_end_to_end_server(proc
.hProcess
, proc
.hThread
, TRUE
);
2769 test_dde_aw_transaction( FALSE
, TRUE
);
2770 test_dde_aw_transaction( TRUE
, FALSE
);
2771 test_dde_aw_transaction( TRUE
, TRUE
);
2772 test_dde_aw_transaction( FALSE
, FALSE
);
2774 test_dde_aw_transaction( FALSE
, TRUE
);
2775 test_dde_aw_transaction( TRUE
, FALSE
);
2776 test_dde_aw_transaction( TRUE
, TRUE
);
2778 test_dde_aw_transaction( FALSE
, FALSE
);
2780 test_DdeCreateDataHandle();
2781 test_DdeCreateStringHandle();
2782 test_FreeDDElParam();
2783 test_PackDDElParam();
2784 test_UnpackDDElParam();