mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 21:48:19 +00:00
[SPEC2DEF]: Display the -private exports warning *only* when making import libs.
CORE-8445 #comment -private warning only displayed for import libs. svn path=/trunk/; revision=66199
This commit is contained in:
parent
cfcdf14cef
commit
41180fb6b0
1 changed files with 1 additions and 1 deletions
|
@ -1043,7 +1043,7 @@ ParseFile(char* pcStart, FILE *fileDest, PFNOUTLINE OutputLine)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!gbNotPrivateNoWarn && !(exp.uFlags & FL_PRIVATE))
|
if (!gbNotPrivateNoWarn && gbImportLib && !(exp.uFlags & FL_PRIVATE))
|
||||||
{
|
{
|
||||||
for (i = 0; i < ARRAYSIZE(astrShouldBePrivate); i++)
|
for (i = 0; i < ARRAYSIZE(astrShouldBePrivate); i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue