Fix elf_read_wine_loader_dbg_info() for the !__ELF__ case.

This commit is contained in:
Dmitry Timoshkov 2004-05-24 19:10:04 +00:00 committed by Alexandre Julliard
parent 97ea6fffde
commit c4a5c7359b

View file

@ -968,9 +968,9 @@ BOOL elf_synchronize_module_list(struct process* pcs)
return FALSE;
}
unsigned long elf_read_wine_loader_dbg_info(struct process* pcs)
BOOL elf_read_wine_loader_dbg_info(struct process* pcs)
{
return -1;
return FALSE;
}
struct module* elf_load_module(struct process* pcs, const char* name)