Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
22f9f4f0
Commit
22f9f4f0
authored
Nov 29, 2005
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 29, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented SymUnloadModule64.
parent
a37bb2a0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
1 deletion
+19
-1
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+1
-1
module.c
dlls/dbghelp/module.c
+17
-0
dbghelp.h
include/dbghelp.h
+1
-0
No files found.
dlls/dbghelp/dbghelp.spec
View file @
22f9f4f0
...
...
@@ -86,7 +86,7 @@
@ stub SymSetSymWithAddr64
@ stub SymUnDName64
@ stdcall SymUnDName(ptr str long)
@ st
ub SymUnloadModule64
@ st
dcall SymUnloadModule64(long double)
@ stdcall SymUnloadModule(long long)
@ stdcall UnDecorateSymbolName(str str long long)
@ stdcall UnmapDebugInformation(ptr)
...
...
dlls/dbghelp/module.c
View file @
22f9f4f0
...
...
@@ -447,6 +447,23 @@ BOOL WINAPI SymUnloadModule(HANDLE hProcess, DWORD BaseOfDll)
}
/******************************************************************
* SymUnloadModule64 (DBGHELP.@)
*
*/
BOOL
WINAPI
SymUnloadModule64
(
HANDLE
hProcess
,
DWORD64
BaseOfDll
)
{
struct
process
*
pcs
;
struct
module
*
module
;
pcs
=
process_find_by_handle
(
hProcess
);
if
(
!
pcs
)
return
FALSE
;
if
(
!
validate_addr64
(
BaseOfDll
))
return
FALSE
;
module
=
module_find_by_addr
(
pcs
,
(
DWORD
)
BaseOfDll
,
DMT_UNKNOWN
);
if
(
!
module
)
return
FALSE
;
return
module_remove
(
pcs
,
module
);
}
/******************************************************************
* SymEnumerateModules (DBGHELP.@)
*
*/
...
...
include/dbghelp.h
View file @
22f9f4f0
...
...
@@ -617,6 +617,7 @@ DWORD WINAPI SymLoadModule(HANDLE, HANDLE, PSTR, PSTR, DWORD, DWORD);
DWORD64
WINAPI
SymLoadModuleEx
(
HANDLE
,
HANDLE
,
PCSTR
,
PCSTR
,
DWORD64
,
DWORD
,
PMODLOAD_DATA
,
DWORD
);
BOOL
WINAPI
SymUnloadModule
(
HANDLE
,
DWORD
);
BOOL
WINAPI
SymUnloadModule64
(
HANDLE
,
DWORD64
);
/*************************
* Symbol Handling *
...
...
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