mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 06:58:10 +00:00
[ADVAPI32][SECUR32]
Remove useless msvcrt importing. [WINSRV] Fix imports. CORE-7985 svn path=/trunk/; revision=62545
This commit is contained in:
parent
2e7eea8043
commit
a44f578a6c
4 changed files with 8 additions and 8 deletions
|
@ -55,10 +55,10 @@ add_library(advapi32 SHARED
|
|||
${CMAKE_CURRENT_BINARY_DIR}/lsa_c.c
|
||||
${CMAKE_CURRENT_BINARY_DIR}/svcctl_c.c)
|
||||
|
||||
set_module_type(advapi32 win32dll UNICODE)
|
||||
set_module_type(advapi32 win32dll UNICODE ENTRYPOINT DllMain 12)
|
||||
target_link_libraries(advapi32 cryptlib wine ${PSEH_LIB})
|
||||
add_delay_importlibs(advapi32 rpcrt4)
|
||||
add_importlibs(advapi32 secur32 msvcrt kernel32 ntdll)
|
||||
add_delay_importlibs(advapi32 secur32)
|
||||
add_importlibs(advapi32 rpcrt4 kernel32 ntdll)
|
||||
|
||||
add_pch(advapi32 advapi32.h SOURCE)
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ DllMain(
|
|||
break;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -17,11 +17,11 @@ add_library(secur32 SHARED
|
|||
${CMAKE_CURRENT_BINARY_DIR}/secur32_stubs.c
|
||||
${CMAKE_CURRENT_BINARY_DIR}/secur32.def)
|
||||
|
||||
set_module_type(secur32 win32dll)
|
||||
set_module_type(secur32 win32dll UNICODE ENTRYPOINT DllMain 12)
|
||||
|
||||
target_link_libraries(secur32 lsalib)
|
||||
|
||||
add_importlibs(secur32 advapi32 msvcrt kernel32 ntdll)
|
||||
add_importlibs(secur32 advapi32 kernel32 ntdll)
|
||||
add_pch(secur32 precomp.h SOURCE)
|
||||
|
||||
add_cd_file(TARGET secur32 DESTINATION reactos/system32 FOR all)
|
||||
|
|
|
@ -26,8 +26,8 @@ target_link_libraries(winsrv consrv usersrv)
|
|||
# Add win32ksys because of NtUser...()
|
||||
target_link_libraries(winsrv win32ksys libcntpr ${PSEH_LIB} ${CONSRV_TARGET_LINK_LIBS})
|
||||
|
||||
add_delay_importlibs(winsrv advapi32 gdi32 user32 ${CONSRV_DELAY_IMPORT_LIBS})
|
||||
add_importlibs(winsrv csrsrv kernel32 ntdll ${CONSRV_IMPORT_LIBS})
|
||||
add_delay_importlibs(winsrv advapi32 ${CONSRV_DELAY_IMPORT_LIBS})
|
||||
add_importlibs(winsrv csrsrv gdi32 user32 kernel32 ntdll ${CONSRV_IMPORT_LIBS})
|
||||
|
||||
add_dependencies(winsrv bugcodes)
|
||||
add_cd_file(TARGET winsrv DESTINATION reactos/system32 FOR all)
|
||||
|
|
Loading…
Reference in a new issue