mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
dbghelp: Added stub for SymSetScopeFromAddr.
This commit is contained in:
parent
871dbfa88b
commit
7abf97ca47
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user