diff --git a/reactos/dll/win32/actxprxy/CMakeLists.txt b/reactos/dll/win32/actxprxy/CMakeLists.txt index 46f81b6db51..b84ad617b0e 100644 --- a/reactos/dll/win32/actxprxy/CMakeLists.txt +++ b/reactos/dll/win32/actxprxy/CMakeLists.txt @@ -50,6 +50,6 @@ add_importlibs(actxprxy kernel32 ntdll) -add_definitions(-DREGISTER_PROXY_DLL -DPROXY_DELEGATION) +add_definitions(-DWINE_REGISTER_DLL -DPROXY_DELEGATION) add_cd_file(TARGET actxprxy DESTINATION reactos/system32 FOR all) diff --git a/reactos/dll/win32/urlmon/CMakeLists.txt b/reactos/dll/win32/urlmon/CMakeLists.txt index b010e3fa137..6f56eb87dc1 100644 --- a/reactos/dll/win32/urlmon/CMakeLists.txt +++ b/reactos/dll/win32/urlmon/CMakeLists.txt @@ -6,8 +6,6 @@ add_definitions(-D_WIN32_WINNT=0x600) include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine) -set_rc_compiler() - spec2def(urlmon.dll urlmon.spec ADD_IMPORTLIB) add_rpcproxy_files(urlmon_urlmon.idl) @@ -42,7 +40,6 @@ list(APPEND SOURCE add_library(urlmon SHARED ${SOURCE}) - set_module_type(urlmon win32dll) target_link_libraries(urlmon @@ -63,14 +60,12 @@ add_importlibs(urlmon kernel32 ntdll) - add_definitions( -DENTRY_PREFIX=URLMON_ -DPROXY_DELEGATION - -DREGISTER_PROXY_DLL + -DWINE_REGISTER_DLL -D_URLMON_) add_pch(urlmon urlmon_main.h) add_definitions(-DPROXY_CLSID_IS="{0x79EAC9F1,0xBAF9,0x11CE,{0x8C,0x82,0x00,0xAA,0x00,0x4B,0xA9,0x0B}}") add_cd_file(TARGET urlmon DESTINATION reactos/system32 FOR all) -