mirror of
https://github.com/reactos/reactos.git
synced 2024-11-23 11:33:31 +08:00
[DBGENG] Import dbgeng.dll from Wine Staging 4.18
CORE-17153.
This commit is contained in:
parent
408b179220
commit
07f98eb10a
@ -34,6 +34,7 @@ add_subdirectory(cryptdlg)
|
||||
add_subdirectory(cryptdll)
|
||||
add_subdirectory(cryptnet)
|
||||
add_subdirectory(cryptui)
|
||||
add_subdirectory(dbgeng)
|
||||
add_subdirectory(dbghelp)
|
||||
add_subdirectory(dciman32)
|
||||
add_subdirectory(devmgr)
|
||||
|
16
dll/win32/dbgeng/CMakeLists.txt
Normal file
16
dll/win32/dbgeng/CMakeLists.txt
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
add_definitions(-D__WINESRC__)
|
||||
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
||||
spec2def(dbgeng.dll dbgeng.spec)
|
||||
|
||||
list(APPEND SOURCE
|
||||
dbgeng.c
|
||||
${CMAKE_CURRENT_BINARY_DIR}/dbgeng_stubs.c
|
||||
${CMAKE_CURRENT_BINARY_DIR}/dbgeng.def)
|
||||
|
||||
add_library(dbgeng MODULE ${SOURCE})
|
||||
set_module_type(dbgeng win32dll)
|
||||
target_link_libraries(dbgeng wine)
|
||||
add_importlibs(dbgeng psapi msvcrt ntdll)
|
||||
add_delay_importlibs(dbgeng version)
|
||||
add_cd_file(TARGET dbgeng DESTINATION reactos/system32 FOR all)
|
4105
dll/win32/dbgeng/dbgeng.c
Normal file
4105
dll/win32/dbgeng/dbgeng.c
Normal file
File diff suppressed because it is too large
Load Diff
5
dll/win32/dbgeng/dbgeng.spec
Normal file
5
dll/win32/dbgeng/dbgeng.spec
Normal file
@ -0,0 +1,5 @@
|
||||
@ stdcall DebugConnect(str ptr ptr)
|
||||
@ stub DebugConnectWide
|
||||
@ stdcall DebugCreate(ptr ptr)
|
||||
@ stdcall DebugCreateEx(ptr long ptr)
|
||||
@ stdcall DebugExtensionInitialize(ptr ptr)
|
@ -65,6 +65,7 @@ dll/win32/cryptdlg # Synced to WineStaging-4.18
|
||||
dll/win32/cryptdll # Synced to WineStaging-4.18
|
||||
dll/win32/cryptnet # Synced to WineStaging-4.18
|
||||
dll/win32/cryptui # Synced to WineStaging-4.18
|
||||
dll/win32/dbgeng # Synced to WineStaging-4.18
|
||||
dll/win32/dbghelp # Synced to WineStaging-3.9
|
||||
dll/win32/dciman32 # Synced to WineStaging-3.3
|
||||
dll/win32/faultrep # Synced to WineStaging-4.18
|
||||
|
Loading…
Reference in New Issue
Block a user