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

oldstable
William Knop 2006-06-27 02:32:38 -04:00 committed by Alexandre Julliard
parent d9c5cef339
commit 289a068b4f
1 changed files with 6 additions and 0 deletions

View File

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