Author: rharabien
Date: Thu Mar 15 12:57:45 2012
New Revision: 56156
URL:
http://svn.reactos.org/svn/reactos?rev=56156&view=rev
Log:
[MLANG]
- Fix entrypoint and add startup code to fix registration of mlang classes. Fixes crashes
and failures in inetcomm:mimeintl winetest and adds back many tests in mlang winetest
Modified:
trunk/reactos/dll/win32/mlang/CMakeLists.txt
Modified: trunk/reactos/dll/win32/mlang/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/mlang/CMakeLists…
==============================================================================
--- trunk/reactos/dll/win32/mlang/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/mlang/CMakeLists.txt [iso-8859-1] Thu Mar 15 12:57:45 2012
@@ -8,7 +8,6 @@
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
-set_rc_compiler()
spec2def(mlang.dll mlang.spec ADD_IMPORTLIB)
list(APPEND SOURCE
@@ -18,7 +17,7 @@
${CMAKE_CURRENT_BINARY_DIR}/mlang.def)
add_library(mlang SHARED ${SOURCE})
-set_module_type(mlang win32dll ENTRYPOINT 0)
+set_module_type(mlang win32dll UNICODE)
target_link_libraries(mlang uuid wine)
add_delay_importlibs(mlang oleaut32)
@@ -27,6 +26,7 @@
user32
gdi32
advapi32
+ msvcrt
kernel32
ntdll)