winebuild: Add __imp_ label on the import data for delayed imports.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c677a0b044
commit
3eaf036b10
|
@ -959,6 +959,7 @@ static void output_delayed_imports( const DLLSPEC *spec )
|
||||||
{
|
{
|
||||||
struct import_func *func = &import->imports[j];
|
struct import_func *func = &import->imports[j];
|
||||||
const char *name = func->name ? func->name : func->export_name;
|
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",
|
output( "\t%s .L__wine_delay_imp_%s_%s\n",
|
||||||
get_asm_ptr_keyword(), import->c_name, name );
|
get_asm_ptr_keyword(), import->c_name, name );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue