dbghelp: Add stubs SymFromIndex, SymFromIndexW.

oldstable
Alistair Leslie-Hughes 2011-05-19 21:58:53 +10:00 committed by Alexandre Julliard
parent 3de8370a4e
commit 5d01166f96
2 changed files with 26 additions and 2 deletions

View File

@ -72,8 +72,8 @@
@ stdcall SymFindFileInPathW(long wstr wstr ptr long long long ptr ptr ptr)
@ stdcall SymFromAddr(ptr int64 ptr ptr)
@ stdcall SymFromAddrW(ptr int64 ptr ptr)
@ stub SymFromIndex
@ stub SymFromIndexW
@ stdcall SymFromIndex(long int64 long ptr)
@ stdcall SymFromIndexW(long int64 long ptr)
@ stdcall SymFromName(long str ptr)
@ stub SymFromNameW
@ stub SymFromToken

View File

@ -2087,3 +2087,27 @@ BOOL WINAPI SymGetLineFromNameW64(HANDLE hProcess, PCWSTR ModuleName, PCWSTR Fil
dwLineNumber, plDisplacement, Line);
return FALSE;
}
/******************************************************************
* SymFromIndex (DBGHELP.@)
*
*/
BOOL WINAPI SymFromIndex(HANDLE hProcess, ULONG64 BaseOfDll, DWORD index, PSYMBOL_INFO symbol)
{
FIXME("hProcess = %p, BaseOfDll = %s, index = %d, symbol = %p\n",
hProcess, wine_dbgstr_longlong(BaseOfDll), index, symbol);
return FALSE;
}
/******************************************************************
* SymFromIndexW (DBGHELP.@)
*
*/
BOOL WINAPI SymFromIndexW(HANDLE hProcess, ULONG64 BaseOfDll, DWORD index, PSYMBOL_INFOW symbol)
{
FIXME("hProcess = %p, BaseOfDll = %s, index = %d, symbol = %p\n",
hProcess, wine_dbgstr_longlong(BaseOfDll), index, symbol);
return FALSE;
}