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
5d01166f
Commit
5d01166f
authored
May 19, 2011
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
May 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Add stubs SymFromIndex, SymFromIndexW.
parent
3de8370a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+2
-2
symbol.c
dlls/dbghelp/symbol.c
+24
-0
No files found.
dlls/dbghelp/dbghelp.spec
View file @
5d01166f
...
...
@@ -72,8 +72,8 @@
@ stdcall SymFindFileInPathW(long wstr wstr ptr long long long ptr ptr ptr)
@ stdcall SymFromAddr(ptr int64 ptr ptr)
@ stdcall SymFromAddrW(ptr int64 ptr ptr)
@ st
ub SymFromIndex
@ st
ub SymFromIndexW
@ st
dcall SymFromIndex(long int64 long ptr)
@ st
dcall SymFromIndexW(long int64 long ptr)
@ stdcall SymFromName(long str ptr)
@ stub SymFromNameW
@ stub SymFromToken
...
...
dlls/dbghelp/symbol.c
View file @
5d01166f
...
...
@@ -2087,3 +2087,27 @@ BOOL WINAPI SymGetLineFromNameW64(HANDLE hProcess, PCWSTR ModuleName, PCWSTR Fil
dwLineNumber
,
plDisplacement
,
Line
);
return
FALSE
;
}
/******************************************************************
* SymFromIndex (DBGHELP.@)
*
*/
BOOL
WINAPI
SymFromIndex
(
HANDLE
hProcess
,
ULONG64
BaseOfDll
,
DWORD
index
,
PSYMBOL_INFO
symbol
)
{
FIXME
(
"hProcess = %p, BaseOfDll = %s, index = %d, symbol = %p
\n
"
,
hProcess
,
wine_dbgstr_longlong
(
BaseOfDll
),
index
,
symbol
);
return
FALSE
;
}
/******************************************************************
* SymFromIndexW (DBGHELP.@)
*
*/
BOOL
WINAPI
SymFromIndexW
(
HANDLE
hProcess
,
ULONG64
BaseOfDll
,
DWORD
index
,
PSYMBOL_INFOW
symbol
)
{
FIXME
(
"hProcess = %p, BaseOfDll = %s, index = %d, symbol = %p
\n
"
,
hProcess
,
wine_dbgstr_longlong
(
BaseOfDll
),
index
,
symbol
);
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