mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[SPEC2DEF] Ignore -import flag in spec files
These are used by wine for exports that re-export the import stub function from an import library. We don't need to do anything here, so simply ignore it.
This commit is contained in:
@@ -1206,6 +1206,10 @@ ParseFile(char* pcStart, FILE *fileDest, unsigned *cExports)
|
||||
{
|
||||
exp.uFlags |= FL_REGISTER;
|
||||
}
|
||||
else if (CompareToken(pc, "-import"))
|
||||
{
|
||||
/* The export is imported from an import library. Ignored. */
|
||||
}
|
||||
else
|
||||
{
|
||||
fprintf(stdout,
|
||||
|
||||
Reference in New Issue
Block a user