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
51c81714
Commit
51c81714
authored
Nov 18, 2022
by
Mohamad Al-Jaf
Committed by
Alexandre Julliard
Nov 18, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Add SymAddrIncludeInlineTrace stub.
Football Manager 2023 Editor calls this function. Signed-off-by:
Mohamad Al-Jaf
<
mohamadaljaf@gmail.com
>
parent
57f251d0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+1
-1
symbol.c
dlls/dbghelp/symbol.c
+10
-0
No files found.
dlls/dbghelp/dbghelp.spec
View file @
51c81714
...
...
@@ -38,7 +38,7 @@
@ stub SymAddSourceStreamW
@ stdcall SymAddSymbol(ptr int64 str int64 long long)
@ stdcall SymAddSymbolW(ptr int64 wstr int64 long long)
@ st
ub SymAddrIncludeInlineTrace
@ st
dcall SymAddrIncludeInlineTrace(long int64)
@ stdcall SymCleanup(long)
@ stub SymCompareInlineTrace
@ stub SymDeleteSymbol
...
...
dlls/dbghelp/symbol.c
View file @
51c81714
...
...
@@ -2795,6 +2795,16 @@ BOOL WINAPI SymGetLineFromInlineContextW(HANDLE hProcess, DWORD64 addr, ULONG in
}
/******************************************************************
* SymAddrIncludeInlineTrace (DBGHELP.@)
*
*/
DWORD
WINAPI
SymAddrIncludeInlineTrace
(
HANDLE
hProcess
,
DWORD64
addr
)
{
FIXME
(
"(%p, %I64x): stub
\n
"
,
hProcess
,
addr
);
return
0
;
}
/******************************************************************
* SymSrvGetFileIndexInfo (DBGHELP.@)
*
*/
...
...
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