mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
[SPEC2DEF]
- Allow C++ redirects aka fix MSVC build svn path=/trunk/; revision=60039
This commit is contained in:
parent
e4b198bc97
commit
08aa7a2432
1 changed files with 4 additions and 11 deletions
|
@ -349,18 +349,11 @@ OutputLine_def(FILE *fileDest, EXPORT *pexp)
|
|||
}
|
||||
else if (pexp->pcRedirection)
|
||||
{
|
||||
if (gbMSComp && (pexp->pcName[0] == '?'))
|
||||
{
|
||||
/* ignore c++ redirection, since link doesn't like that! */
|
||||
}
|
||||
else
|
||||
{
|
||||
int fDeco;
|
||||
int fDeco;
|
||||
|
||||
fDeco = ((giArch == ARCH_X86) && !ScanToken(pexp->pcRedirection, '.'));
|
||||
fprintf(fileDest, "=");
|
||||
PrintName(fileDest, pexp, "", 1, fDeco && !gbMSComp);
|
||||
}
|
||||
fDeco = ((giArch == ARCH_X86) && !ScanToken(pexp->pcRedirection, '.'));
|
||||
fprintf(fileDest, "=");
|
||||
PrintName(fileDest, pexp, "", 1, fDeco && !gbMSComp);
|
||||
}
|
||||
else if (((pexp->uFlags & FL_STUB) || (pexp->nCallingConvention == CC_STUB)) &&
|
||||
(pexp->pcName[0] == '?'))
|
||||
|
|
Loading…
Reference in a new issue