# HG changeset patch # User diego # Date 1189438043 0 # Node ID d4674d333c9c781698eae02ccc730866dc69e77f # Parent 5ed2a051eb85ce44393939df2554f592b47c2dc4 warning fixes: pe_image.c:70: warning: redundant redeclaration of 'LookupExternal' win32.h:41: warning: previous declaration of 'LookupExternal' was here pe_image.c:71: warning: redundant redeclaration of 'LookupExternalByName' win32.h:42: warning: previous declaration of 'LookupExternalByName' was here diff -r 5ed2a051eb85 -r d4674d333c9c loader/pe_image.c --- a/loader/pe_image.c Mon Sep 10 14:43:19 2007 +0000 +++ b/loader/pe_image.c Mon Sep 10 15:27:23 2007 +0000 @@ -67,9 +67,6 @@ #define AdjustPtr(ptr,delta) ((char *)(ptr) + (delta)) -extern void* LookupExternal(const char* library, int ordinal); -extern void* LookupExternalByName(const char* library, const char* name); - static void dump_exports( HMODULE hModule ) { char *Module;