Do not output stubs in the .def file.
This commit is contained in:
parent
35389149de
commit
476aabc95a
|
@ -775,6 +775,7 @@ void BuildDef32File(FILE *outfile)
|
||||||
{
|
{
|
||||||
ORDDEF *odp = EntryPoints[i];
|
ORDDEF *odp = EntryPoints[i];
|
||||||
if(!odp || !*odp->name || (odp->flags & FLAG_NOIMPORT)) continue;
|
if(!odp || !*odp->name || (odp->flags & FLAG_NOIMPORT)) continue;
|
||||||
|
if (odp->type == TYPE_STUB) continue;
|
||||||
|
|
||||||
fprintf(outfile, " %s", odp->name);
|
fprintf(outfile, " %s", odp->name);
|
||||||
|
|
||||||
|
@ -804,9 +805,6 @@ void BuildDef32File(FILE *outfile)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case TYPE_STUB:
|
|
||||||
fprintf(outfile, "=%s", make_internal_name( odp, "stub" ));
|
|
||||||
break;
|
|
||||||
case TYPE_FORWARD:
|
case TYPE_FORWARD:
|
||||||
fprintf(outfile, "=%s", odp->link_name);
|
fprintf(outfile, "=%s", odp->link_name);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue