Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
642402d5
Commit
642402d5
authored
Mar 07, 2005
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for minidump (read & write).
parent
9f81a801
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
2 deletions
+4
-2
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+2
-2
elf_module.c
dlls/dbghelp/elf_module.c
+2
-0
minidump.c
dlls/dbghelp/minidump.c
+0
-0
dbghelp.h
include/dbghelp.h
+0
-0
No files found.
dlls/dbghelp/dbghelp.spec
View file @
642402d5
...
...
@@ -20,8 +20,8 @@
@ stdcall ImagehlpApiVersionEx(ptr)
@ stdcall MakeSureDirectoryPathExists(str)
@ stdcall MapDebugInformation(long str str long)
@ st
ub MiniDumpReadDumpStream
@ st
ub MiniDumpWriteDump
@ st
dcall MiniDumpReadDumpStream(ptr long ptr ptr ptr)
@ st
dcall MiniDumpWriteDump(ptr long ptr long long long long)
@ stdcall SearchTreeForFile(str str str)
@ stdcall StackWalk(long long long ptr ptr ptr ptr ptr ptr)
@ stub StackWalk64
...
...
dlls/dbghelp/elf_module.c
View file @
642402d5
...
...
@@ -1278,9 +1278,11 @@ BOOL elf_enum_modules(HANDLE hProc, elf_enum_modules_cb cb, void* user)
struct
process
pcs
;
struct
elf_info
elf_info
;
memset
(
&
pcs
,
0
,
sizeof
(
pcs
));
pcs
.
handle
=
hProc
;
elf_info
.
flags
=
ELF_INFO_DEBUG_HEADER
;
if
(
!
elf_search_loader
(
&
pcs
,
&
elf_info
))
return
FALSE
;
pcs
.
dbg_hdr_addr
=
elf_info
.
dbg_hdr_addr
;
return
elf_enum_modules_internal
(
&
pcs
,
cb
,
user
);
}
...
...
dlls/dbghelp/minidump.c
View file @
642402d5
This diff is collapsed.
Click to expand it.
include/dbghelp.h
View file @
642402d5
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment