mirror of
https://github.com/reactos/wine.git
synced 2025-04-11 12:32:16 +00:00
shell32: Fix DDE command tracing now that we are receiving Unicode.
This commit is contained in:
parent
6f2aa56ce6
commit
cedeccce76
@ -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)
|
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)
|
if (!pszCommand)
|
||||||
return DDE_FNOTPROCESSED;
|
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);
|
DdeUnaccessData(hdata);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user