[ACLAYERS][ACGENRAL] Do not use the crt entrypoint.

This commit is contained in:
Mark Jansen
2019-03-10 12:45:22 +01:00
parent 4e07b3b9f9
commit 76af1fb019
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ add_library(acgenral SHARED
${SOURCE}
${CMAKE_CURRENT_BINARY_DIR}/acgenral.def)
set_module_type(acgenral win32dll)
set_module_type(acgenral win32dll ENTRYPOINT DllMain 12)
target_link_libraries(acgenral shimlib)
add_importlibs(acgenral uxtheme msvcrt kernel32 ntdll)
add_importlibs(acgenral uxtheme kernel32 ntdll)
add_cd_file(TARGET acgenral DESTINATION reactos/AppPatch FOR all)
+2 -2
View File
@@ -14,7 +14,7 @@ add_library(aclayers SHARED
${SOURCE}
${CMAKE_CURRENT_BINARY_DIR}/aclayers.def)
set_module_type(aclayers win32dll)
set_module_type(aclayers win32dll ENTRYPOINT DllMain 12)
target_link_libraries(aclayers shimlib)
add_importlibs(aclayers user32 msvcrt kernel32 ntdll)
add_importlibs(aclayers user32 kernel32 ntdll)
add_cd_file(TARGET aclayers DESTINATION reactos/AppPatch FOR all)