Dmitry Timoshkov : explorer: Initialize the Progman DDE interface when starting explorer.

Alexandre Julliard julliard at winehq.org
Wed Apr 29 10:20:19 CDT 2009


Module: wine
Branch: master
Commit: 54d7c8012d1d7369a56779955ced5a09e448a1cd
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=54d7c8012d1d7369a56779955ced5a09e448a1cd

Author: Dmitry Timoshkov <dmitry at codeweavers.com>
Date:   Wed Apr 29 15:17:35 2009 +0900

explorer: Initialize the Progman DDE interface when starting explorer.

---

 programs/explorer/desktop.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/programs/explorer/desktop.c b/programs/explorer/desktop.c
index 480d245..67ade26 100644
--- a/programs/explorer/desktop.c
+++ b/programs/explorer/desktop.c
@@ -326,6 +326,9 @@ void manage_desktop( WCHAR *arg )
 
     if (hwnd == GetDesktopWindow())
     {
+        HMODULE shell32;
+        void (WINAPI *pShellDDEInit)( BOOL );
+
         SetWindowLongPtrW( hwnd, GWLP_WNDPROC, (LONG_PTR)desktop_wnd_proc );
         SendMessageW( hwnd, WM_SETICON, ICON_BIG, (LPARAM)LoadIconW( 0, MAKEINTRESOURCEW(OIC_WINLOGO)));
         if (name) set_desktop_window_title( hwnd, name );
@@ -334,6 +337,12 @@ void manage_desktop( WCHAR *arg )
         initialize_display_settings( hwnd );
         initialize_appbar();
         initialize_systray();
+
+        if ((shell32 = LoadLibraryA( "shell32.dll" )) &&
+            (pShellDDEInit = (void *)GetProcAddress( shell32, (LPCSTR)188)))
+        {
+            pShellDDEInit( TRUE );
+        }
     }
     else
     {




More information about the wine-cvs mailing list