comparison lib-src/winclient.c @ 5921:68639fb08af8 cygwin

no obvious 64 vs. 32 pblms in compilation, but still crashing in event-msw
author Henry Thompson <ht@markup.co.uk>
date Wed, 23 Apr 2014 22:22:37 +0100
parents 308d34e9f07d
children
comparison
equal deleted inserted replaced
5920:0f2338afbabf 5921:68639fb08af8
293 /* Build the command */ 293 /* Build the command */
294 len = wsprintf (buf, COMMAND_FORMAT, lpszFileName1, lpszFileName2); 294 len = wsprintf (buf, COMMAND_FORMAT, lpszFileName1, lpszFileName2);
295 len++; 295 len++;
296 296
297 /* OK. We're connected. Send the message. */ 297 /* OK. We're connected. Send the message. */
298 DdeClientTransaction (buf, len, hConv, NULL, 298 DdeClientTransaction ((LPBYTE)buf, len, hConv, NULL,
299 0, XTYP_EXECUTE, TRANSACTION_TIMEOUT, NULL); 299 0, XTYP_EXECUTE, TRANSACTION_TIMEOUT, NULL);
300 300
301 free (buf); 301 free (buf);
302 302
303 return 0; 303 return 0;