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
4129e6e1
Commit
4129e6e1
authored
May 29, 2005
by
Paul Vriens
Committed by
Alexandre Julliard
May 29, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add SymLoadModule64.
parent
92f9c3f1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+1
-1
module.c
dlls/dbghelp/module.c
+11
-0
No files found.
dlls/dbghelp/dbghelp.spec
View file @
4129e6e1
...
...
@@ -70,7 +70,7 @@
@ stdcall SymGetTypeInfo(ptr long long long long ptr)
@ stdcall SymInitialize(long str long)
@ stdcall SymLoadModule(long long str str long long)
@ st
ub SymLoadModule64
@ st
dcall SymLoadModule64(long long str str long long long)
@ stub SymLoadModuleEx
@ stdcall SymMatchFileName(str str ptr ptr)
@ stub SymMatchString
...
...
dlls/dbghelp/module.c
View file @
4129e6e1
...
...
@@ -374,6 +374,17 @@ done:
return
module
->
module
.
BaseOfImage
;
}
/***********************************************************************
* SymLoadModule64 (DBGHELP.@)
*/
DWORD
WINAPI
SymLoadModule64
(
HANDLE
hProcess
,
HANDLE
hFile
,
char
*
ImageName
,
char
*
ModuleName
,
DWORD64
BaseOfDll
,
DWORD
SizeOfDll
)
{
FIXME
(
"SymLoadModule should probably reference SymLoadModule64 instead of this way
\n
"
);
return
SymLoadModule
(
hProcess
,
hFile
,
ImageName
,
ModuleName
,
(
DWORD
)
BaseOfDll
,
SizeOfDll
);
}
/******************************************************************
* module_remove
*
...
...
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