[USER32] Sync ddeserver.c with Wine Staging 1.7.55. CORE-10536

svn path=/trunk/; revision=70171
This commit is contained in:
Amine Khaldi 2015-11-27 22:51:40 +00:00
parent 8f1fa5e08f
commit 99429545d9
2 changed files with 8 additions and 8 deletions

View file

@ -305,7 +305,7 @@ User32 -
reactos/win32ss/user/user32/misc/dde.c # Synced to Wine-1.1.24 (dde_misc.c)
reactos/win32ss/user/user32/misc/ddeclient.c # Synced to WineStaging-1.7.55
reactos/win32ss/user/user32/misc/ddeserver.c # Synced to WineStaging-1.7.37
reactos/win32ss/user/user32/misc/ddeserver.c # Synced to WineStaging-1.7.55
reactos/win32ss/user/user32/misc/exticon.c # Synced to Wine-1_1_22
reactos/win32ss/user/user32/misc/resources.c # Partially synced to WineStaging-1.7.55
reactos/win32ss/user/user32/misc/winhelp.c # Last sync date unknown

View file

@ -50,12 +50,12 @@ static LRESULT CALLBACK WDML_ServerConvProc(HWND, UINT, WPARAM, LPARAM);
*/
BOOL WINAPI DdePostAdvise(DWORD idInst, HSZ hszTopic, HSZ hszItem)
{
WDML_INSTANCE* pInstance = NULL;
WDML_LINK* pLink = NULL;
HDDEDATA hDdeData = 0;
HGLOBAL hItemData = 0;
WDML_CONV* pConv = NULL;
ATOM atom = 0;
WDML_INSTANCE* pInstance;
WDML_LINK* pLink;
HDDEDATA hDdeData;
HGLOBAL hItemData;
WDML_CONV* pConv;
ATOM atom;
UINT count;
TRACE("(%d,%p,%p)\n", idInst, hszTopic, hszItem);
@ -368,7 +368,7 @@ static LRESULT CALLBACK WDML_ServerNameProc(HWND hwndServer, UINT iMsg, WPARAM w
{
HWND hwndClient;
HSZ hszApp, hszTop;
HDDEDATA hDdeData = 0;
HDDEDATA hDdeData;
WDML_INSTANCE* pInstance;
UINT_PTR uiLo, uiHi;