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
44ac91d7
Commit
44ac91d7
authored
Nov 15, 2009
by
Andrew Nguyen
Committed by
Alexandre Julliard
Nov 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Stub SymRefreshModuleList.
parent
0c652a5a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+1
-1
module.c
dlls/dbghelp/module.c
+9
-0
No files found.
dlls/dbghelp/dbghelp.spec
View file @
44ac91d7
...
...
@@ -144,7 +144,7 @@
@ stub SymNextW
@ stub SymPrev
@ stub SymPrevW
@ st
ub SymRefreshModuleList
@ st
dcall SymRefreshModuleList(long)
@ stdcall SymRegisterCallback(long ptr ptr)
@ stdcall SymRegisterCallback64(long ptr double)
@ stdcall SymRegisterCallbackW64(long ptr double)
...
...
dlls/dbghelp/module.c
View file @
44ac91d7
...
...
@@ -1052,3 +1052,12 @@ void module_reset_debug_info(struct module* module)
module
->
sources_used
=
module
->
sources_alloc
=
0
;
module
->
sources
=
NULL
;
}
/******************************************************************
* SymRefreshModuleList (DBGHELP.@)
*/
BOOL
WINAPI
SymRefreshModuleList
(
HANDLE
hProcess
)
{
FIXME
(
"(%p) stub
\n
"
,
hProcess
);
return
FALSE
;
}
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