Commit 32b365c9 authored by Alexandre Julliard's avatar Alexandre Julliard

winebuild: List stubs in the import library .def files.

This way we have the full list of names to compute ordinal hints. Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 074ec584
......@@ -308,7 +308,7 @@ extern void output_bin_resources( DLLSPEC *spec, unsigned int start_rva );
extern void output_spec32_file( DLLSPEC *spec );
extern void output_pe_module( DLLSPEC *spec );
extern void output_fake_module( DLLSPEC *spec );
extern void output_def_file( DLLSPEC *spec, int include_private );
extern void output_def_file( DLLSPEC *spec, int include_stubs );
extern void load_res16_file( const char *name, DLLSPEC *spec );
extern void output_res16_data( DLLSPEC *spec );
extern void output_bin_res16_data( DLLSPEC *spec );
......
......@@ -934,7 +934,7 @@ void output_fake_module( DLLSPEC *spec )
*
* Build a Win32 def file from a spec file.
*/
void output_def_file( DLLSPEC *spec, int include_private )
void output_def_file( DLLSPEC *spec, int include_stubs )
{
DLLSPEC *spec32 = NULL;
const char *name;
......@@ -961,16 +961,14 @@ void output_def_file( DLLSPEC *spec, int include_private )
for (i = total = 0; i < spec->nb_entry_points; i++)
{
const ORDDEF *odp = &spec->entry_points[i];
int is_data = 0;
int is_data = 0, is_private = odp->flags & FLAG_PRIVATE;
if (odp->name) name = odp->name;
else if (odp->export_name) name = odp->export_name;
else continue;
if (!(odp->flags & FLAG_PRIVATE)) total++;
else if (!include_private) continue;
if (odp->type == TYPE_STUB) continue;
if (!is_private) total++;
if (!include_stubs && odp->type == TYPE_STUB) continue;
output( " %s", name );
......@@ -995,13 +993,17 @@ void output_def_file( DLLSPEC *spec, int include_private )
output( "=%s", get_link_name( odp ));
break;
}
case TYPE_STUB:
if (!kill_at && target_cpu == CPU_x86) output( "@%d", get_args_size( odp ));
is_private = 1;
break;
default:
assert(0);
}
output( " @%d", odp->ordinal );
if (!odp->name || (odp->flags & FLAG_ORDINAL)) output( " NONAME" );
if (is_data) output( " DATA" );
if (odp->flags & FLAG_PRIVATE) output( " PRIVATE" );
if (is_private) output( " PRIVATE" );
output( "\n" );
}
if (!total) warning( "%s: Import library doesn't export anything\n", spec->file_name );
......
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