dbghelp: Added stub for SymSetScopeFromAddr.

This commit is contained in:
Eric Pouech 2008-09-29 21:30:42 +02:00 committed by Alexandre Julliard
parent 871dbfa88b
commit 7abf97ca47
2 changed files with 13 additions and 1 deletions

View File

@ -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)

View File

@ -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;
}