[DBGENG] Import dbgeng.dll from Wine Staging 4.18

CORE-17153.
This commit is contained in:
Oleg Dubinskiy 2020-06-30 20:42:29 +03:00 committed by Mark Jansen
parent 408b179220
commit 07f98eb10a
5 changed files with 4128 additions and 0 deletions

View File

@ -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)

View 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

File diff suppressed because it is too large Load Diff

View 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)

View File

@ -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