dbghelp: Add stubs SymFromIndex, SymFromIndexW.
This commit is contained in:
parent
3de8370a4e
commit
5d01166f96
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue