Alexandre Julliard : winebuild: Add __imp_ label on the import data for delayed imports.

Alexandre Julliard julliard at winehq.org
Wed Oct 14 15:37:21 CDT 2020


Module: wine
Branch: master
Commit: 3eaf036b101ba7909ed5f60b3afef9161a2231ce
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=3eaf036b101ba7909ed5f60b3afef9161a2231ce

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Oct 14 21:25:39 2020 +0200

winebuild: Add __imp_ label on the import data for delayed imports.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 tools/winebuild/import.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/winebuild/import.c b/tools/winebuild/import.c
index 0369efa803..62d9844e36 100644
--- a/tools/winebuild/import.c
+++ b/tools/winebuild/import.c
@@ -959,6 +959,7 @@ static void output_delayed_imports( const DLLSPEC *spec )
         {
             struct import_func *func = &import->imports[j];
             const char *name = func->name ? func->name : func->export_name;
+            output( "__imp_%s:\n", asm_name( name ));
             output( "\t%s .L__wine_delay_imp_%s_%s\n",
                     get_asm_ptr_keyword(), import->c_name, name );
         }




More information about the wine-cvs mailing list