Commit 64513439 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Stub for SymGetSourceFileToken.

parent a49adbc4
......@@ -64,7 +64,7 @@
@ stdcall SymGetOptions()
@ stdcall SymGetSearchPath(long str long)
@ stub SymGetSourceFileFromToken
@ stub SymGetSourceFileToken
@ stdcall SymGetSourceFileToken(ptr double str ptr ptr)
@ stub SymGetSourceVarFromToken
@ stub SymGetSymFromAddr64
@ stdcall SymGetSymFromAddr(long long ptr ptr)
......
......@@ -202,3 +202,16 @@ BOOL WINAPI SymEnumLines(HANDLE hProcess, ULONG64 base, PCSTR compiland,
}
return TRUE;
}
/******************************************************************
* SymGetSourceFileToken (DBGHELP.@)
*
*/
BOOL WINAPI SymGetSourceFileToken(HANDLE hProcess, ULONG64 base,
PCSTR src, PVOID* token, DWORD* size)
{
FIXME("%p %s %s %p %p: stub!\n",
hProcess, wine_dbgstr_longlong(base), debugstr_a(src), token, size);
SetLastError(ERROR_NOT_SUPPORTED);
return FALSE;
}
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