winebuild: Skip non-functions when building the undefined exports file.

This commit is contained in:
Alexandre Julliard 2009-03-25 13:27:27 +01:00
parent 08c0ddec80
commit cdad788d33
1 changed files with 1 additions and 1 deletions

View File

@ -510,7 +510,7 @@ static char *create_undef_symbols_file( DLLSPEC *spec )
for (i = 0; i < spec->nb_entry_points; i++)
{
ORDDEF *odp = &spec->entry_points[i];
if (odp->type == TYPE_STUB) continue;
if (odp->type == TYPE_STUB || odp->type == TYPE_ABS) continue;
if (odp->flags & FLAG_FORWARD) continue;
fprintf( f, "\t%s %s\n", get_asm_ptr_keyword(), asm_name(odp->link_name) );
}