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

This commit is contained in:
Mark Jansen 2018-10-10 00:19:54 +02:00
parent 4e07b3b9f9
commit 76af1fb019
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B
2 changed files with 4 additions and 4 deletions

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)

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)