shell32: Fix DDE command tracing now that we are receiving Unicode.

This commit is contained in:
Alexandre Julliard 2010-06-25 00:00:35 +02:00
parent 6f2aa56ce6
commit cedeccce76
1 changed files with 3 additions and 3 deletions

View File

@ -88,13 +88,13 @@ static inline HDDEDATA Dde_OnRequest(UINT uFmt, HCONV hconv, HSZ hszTopic,
static inline DWORD Dde_OnExecute(HCONV hconv, HSZ hszTopic, HDDEDATA hdata)
{
BYTE * pszCommand;
WCHAR * pszCommand;
pszCommand = DdeAccessData(hdata, NULL);
pszCommand = (WCHAR *)DdeAccessData(hdata, NULL);
if (!pszCommand)
return DDE_FNOTPROCESSED;
FIXME("stub: %s %s\n", debugstr_hsz(hszTopic), pszCommand);
FIXME("stub: %s %s\n", debugstr_hsz(hszTopic), debugstr_w(pszCommand));
DdeUnaccessData(hdata);