Index: dll/win32/shell32/CMakeLists.txt =================================================================== --- dll/win32/shell32/CMakeLists.txt (revision 71118) +++ dll/win32/shell32/CMakeLists.txt (working copy) @@ -85,6 +85,10 @@ ${CMAKE_CURRENT_BINARY_DIR}/shell32_stubs.c ${CMAKE_CURRENT_BINARY_DIR}/shell32.def) + +add_typelib(shell32_shldisp.idl) +set_source_files_properties(shell32.rc PROPERTIES OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/shell32_shldisp.tlb) + set_module_type(shell32 win32dll UNICODE) target_link_libraries(shell32 shellmenu shelldesktop atlnew wine uuid recyclebin) add_delay_importlibs(shell32 uxtheme ole32 oleaut32 userenv version fmifs) Index: dll/win32/shell32/shell32.cpp =================================================================== --- dll/win32/shell32/shell32.cpp (revision 71118) +++ dll/win32/shell32/shell32.cpp (working copy) @@ -350,7 +350,7 @@ { HRESULT hr; - hr = gModule.DllRegisterServer(FALSE); + hr = gModule.DllRegisterServer(TRUE); if (FAILED(hr)) return hr; @@ -372,7 +372,7 @@ { HRESULT hr; - hr = gModule.DllUnregisterServer(FALSE); + hr = gModule.DllUnregisterServer(TRUE); if (FAILED(hr)) return hr; Index: dll/win32/shell32/shell32.rc =================================================================== --- dll/win32/shell32/shell32.rc (revision 71118) +++ dll/win32/shell32/shell32.rc (working copy) @@ -79,6 +79,8 @@ #include +1 TYPELIB "shell32_shldisp.tlb" + /* * Everything specific to any language goes * in one of the specific files. Index: dll/win32/shell32/shell32_shldisp.idl =================================================================== --- dll/win32/shell32/shell32_shldisp.idl (revision 0) +++ dll/win32/shell32/shell32_shldisp.idl (working copy) @@ -0,0 +1,25 @@ +/* + * Copyright 2011 Alexandre Julliard + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +/* just a wrapper for shldisp.idl */ + +#pragma makedep proxy +#pragma makedep register + +#include "shldisp.idl" +