dbghelp: Fix for non-elf build (undefined symbol: _elf_is_in_thunk_area).
This commit is contained in:
parent
d9c5cef339
commit
289a068b4f
|
@ -1489,4 +1489,10 @@ BOOL elf_load_debug_info(struct module* module, struct elf_file_map* fmap)
|
|||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
int elf_is_in_thunk_area(unsigned long addr,
|
||||
const struct elf_thunk_area* thunks)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
#endif /* __ELF__ */
|
||||
|
|
Loading…
Reference in New Issue