Don't list register functions in the .def file.

This commit is contained in:
Alexandre Julliard 2002-10-09 20:28:06 +00:00
parent d0590c0658
commit 4ce72031a0
1 changed files with 1 additions and 1 deletions

View File

@ -863,7 +863,7 @@ void BuildDef32File(FILE *outfile)
ORDDEF *odp = EntryPoints[i];
if (!odp) continue;
if (odp->flags & FLAG_NOIMPORT) continue;
if (odp->flags & (FLAG_NOIMPORT|FLAG_REGISTER)) continue;
if (odp->type == TYPE_STUB) continue;
if (odp->name) name = odp->name;