Commit cedeccce authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 6f2aa56c
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment