dbghelp: Stub for SymGetSourceFileToken.

This commit is contained in:
Eric Pouech 2006-05-07 14:30:12 +02:00 committed by Alexandre Julliard
parent a49adbc49e
commit 645134397b
2 changed files with 14 additions and 1 deletions

View File

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

View File

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