From 289a068b4fcc61821f913f0be9c8dce2b12cce50 Mon Sep 17 00:00:00 2001 From: William Knop Date: Tue, 27 Jun 2006 02:32:38 -0400 Subject: [PATCH] dbghelp: Fix for non-elf build (undefined symbol: _elf_is_in_thunk_area). --- dlls/dbghelp/elf_module.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dlls/dbghelp/elf_module.c b/dlls/dbghelp/elf_module.c index 4e86ec2f56b..11ddfb86219 100644 --- a/dlls/dbghelp/elf_module.c +++ b/dlls/dbghelp/elf_module.c @@ -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__ */