Commit 2aa9e201 authored by Alexandre Julliard's avatar Alexandre Julliard

Output the delayed import table using assembly too.

parent 9bca150c
......@@ -194,7 +194,6 @@ extern void read_undef_symbols( DLLSPEC *spec, char **argv );
extern int resolve_imports( DLLSPEC *spec );
extern int get_imports_size(void);
extern void output_imports( FILE *outfile, DLLSPEC *spec );
extern void output_import_thunks( FILE *outfile, DLLSPEC *spec );
extern int load_res32_file( const char *name, DLLSPEC *spec );
extern void output_resources( FILE *outfile, DLLSPEC *spec );
extern void load_res16_file( const char *name, DLLSPEC *spec );
......
......@@ -478,10 +478,6 @@ void BuildSpec32File( FILE *outfile, DLLSPEC *spec )
output_stub_funcs( outfile, spec );
/* Output the DLL imports */
output_imports( outfile, spec );
/* Output the resources */
output_resources( outfile, spec );
......@@ -597,7 +593,7 @@ void BuildSpec32File( FILE *outfile, DLLSPEC *spec )
fprintf( outfile, "#endif\n" );
output_exports( outfile, spec );
output_import_thunks( outfile, spec );
output_imports( outfile, spec );
output_dll_init( outfile, "__wine_spec_init_ctor", NULL );
fprintf( outfile, "#ifndef __GNUC__\n" );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment