Commit 289a068b authored by William Knop's avatar William Knop Committed by Alexandre Julliard

dbghelp: Fix for non-elf build (undefined symbol: _elf_is_in_thunk_area).

parent d9c5cef3
......@@ -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__ */
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