Commit 7abf97ca authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Added stub for SymSetScopeFromAddr.

parent 871dbfa8
......@@ -157,7 +157,7 @@
@ stub SymSetHomeDirectoryW
@ stdcall SymSetOptions(long)
@ stdcall SymSetParentWindow(long)
@ stub SymSetScopeFromAddr
@ stdcall SymSetScopeFromAddr(ptr double)
@ stub SymSetScopeFromIndex
@ stdcall SymSetSearchPath(long str)
@ stdcall SymSetSearchPathW(long wstr)
......
......@@ -1750,3 +1750,15 @@ BOOL WINAPI SymAddSymbolW(HANDLE hProcess, ULONG64 BaseOfDll, PCWSTR name,
return FALSE;
}
/******************************************************************
* SymSetScopeFromAddr (DBGHELP.@)
*/
BOOL WINAPI SymSetScopeFromAddr(HANDLE hProcess, ULONG64 addr)
{
struct process* pcs;
FIXME("(%p %s): stub\n", hProcess, wine_dbgstr_longlong(addr));
if (!(pcs = process_find_by_handle(hProcess))) return FALSE;
return TRUE;
}
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