mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:05:42 +00:00
sync dde with wine 1.1.33
svn path=/trunk/; revision=44183
This commit is contained in:
parent
f3e43b25a8
commit
5db2650780
1 changed files with 2 additions and 1 deletions
|
@ -368,6 +368,7 @@ UINT WDML_Initialize(LPDWORD pidInst, PFNCALLBACK pfnCallback,
|
|||
pInstance->nodeList = NULL; /* node will be added later */
|
||||
pInstance->monitorFlags = afCmd & MF_MASK;
|
||||
pInstance->wStatus = 0;
|
||||
pInstance->lastError = DMLERR_NO_ERROR;
|
||||
pInstance->servers = NULL;
|
||||
pInstance->convs[0] = NULL;
|
||||
pInstance->convs[1] = NULL;
|
||||
|
@ -718,7 +719,7 @@ HDDEDATA WDML_InvokeCallback(WDML_INSTANCE* pInstance, UINT uType, UINT uFmt, H
|
|||
TRACE("invoking CB[%p] (%x %x %p %p %p %p %lx %lx)\n",
|
||||
pInstance->callback, uType, uFmt,
|
||||
hConv, hsz1, hsz2, hdata, dwData1, dwData2);
|
||||
ret = pInstance->callback(uType, uFmt, hConv, hsz1, hsz2, hdata, dwData1, dwData2);
|
||||
ret = pInstance->callback(uType, uFmt, hConv, hsz1, hsz2, hdata, dwData1, dwData2);
|
||||
TRACE("done => %p\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue