mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 14:51:00 +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:
parent
66908136d4
commit
ec916c445e
1 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue