Commit 51c81714 authored by Mohamad Al-Jaf's avatar Mohamad Al-Jaf Committed by Alexandre Julliard

dbghelp: Add SymAddrIncludeInlineTrace stub.

Football Manager 2023 Editor calls this function. Signed-off-by: 's avatarMohamad Al-Jaf <mohamadaljaf@gmail.com>
parent 57f251d0
......@@ -38,7 +38,7 @@
@ stub SymAddSourceStreamW
@ stdcall SymAddSymbol(ptr int64 str int64 long long)
@ stdcall SymAddSymbolW(ptr int64 wstr int64 long long)
@ stub SymAddrIncludeInlineTrace
@ stdcall SymAddrIncludeInlineTrace(long int64)
@ stdcall SymCleanup(long)
@ stub SymCompareInlineTrace
@ stub SymDeleteSymbol
......
......@@ -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.@)
*
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment