mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
[SPEC2DEF]
Don't use DATA and PRIVATE together. DATA means no stub function is generated in the import lib, PRIVATE means nothing is generated in the export lib. svn path=/trunk/; revision=70454
This commit is contained in:
@@ -688,12 +688,12 @@ OutputLine_def(FILE *fileDest, EXPORT *pexp)
|
||||
fprintf(fileDest, " NONAME");
|
||||
}
|
||||
|
||||
/* Either PRIVATE or DATA */
|
||||
if (pexp->uFlags & FL_PRIVATE)
|
||||
{
|
||||
fprintf(fileDest, " PRIVATE");
|
||||
}
|
||||
|
||||
if (pexp->nCallingConvention == CC_EXTERN)
|
||||
else if (pexp->nCallingConvention == CC_EXTERN)
|
||||
{
|
||||
fprintf(fileDest, " DATA");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user